Previous 199869 Revisions Next

r41663 Sunday 8th November, 2015 at 19:24:44 UTC by Miodrag Milanović
fix breakage while logerror (nw)
[src/emu]device.cpp

trunk/src/emu/device.cpp
r250174r250175
866866      va_end(arg);
867867
868868      // pop it in the UI
869      machine().ui().popup_time(temp.length() / 40 + 2, "%s", temp.c_str());
869      if (m_machine!=NULL) machine().ui().popup_time(temp.length() / 40 + 2, "%s", temp.c_str());
870870   }
871871}
872872
r250174r250175
881881{
882882   std::string fmt("[");
883883   fmt += tag() + std::string("] ") + format;
884   machine().vlogerror(fmt.c_str(), args);
884   if (m_machine!=NULL) machine().vlogerror(fmt.c_str(), args);
885885}
886886
887887//**************************************************************************


Previous 199869 Revisions Next


© 1997-2024 The MAME Team