Previous 199869 Revisions Next

r32039 Tuesday 9th September, 2014 at 21:05:30 UTC by Oliver Stöneberg
and even less tagmap lookups counted (nw)
[src/emu]machine.c video.c

trunk/src/emu/machine.c
r32038r32039
479479   // if we're executing, abort out immediately
480480   m_scheduler.eat_all_cycles();
481481
482#ifdef MAME_DEBUG
483   if (g_tagmap_counter_enabled)
484   {
485      g_tagmap_counter_enabled = false;
486      if (*(options().command()) == 0)
487         osd_printf_info("%d tagmap lookups\n", g_tagmap_finds);
488   }
489#endif
490
482491   // if we're autosaving on exit, schedule a save as well
483492   if (options().autosave() && (m_system.flags & GAME_SUPPORTS_SAVE) && this->time() > attotime::zero)
484493      schedule_save("auto");
trunk/src/emu/video.c
r32038r32039
10281028   // if we're past the "time-to-execute" requested, signal an exit
10291029   if (m_seconds_to_run != 0 && emutime.seconds >= m_seconds_to_run)
10301030   {
1031#ifdef MAME_DEBUG
1032      if (g_tagmap_counter_enabled)
1033      {
1034         g_tagmap_counter_enabled = false;
1035         if (*(machine().options().command()) == 0)
1036            osd_printf_info("%d tagmap lookups\n", g_tagmap_finds);
1037      }
1038#endif
1039
10311040      if (machine().first_screen() != NULL)
10321041      {
10331042         // create a final screenshot

Previous 199869 Revisions Next


© 1997-2024 The MAME Team