summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui.c')
-rw-r--r--src/emu/ui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/ui.c b/src/emu/ui.c
index 4267422f0f7..adbef791c1c 100644
--- a/src/emu/ui.c
+++ b/src/emu/ui.c
@@ -367,11 +367,11 @@ int ui_display_startup_screens(int first_time, int show_disclaimer)
/* loop while we have a handler */
while (ui_handler_callback != handler_ingame && !mame_is_scheduled_event_pending(Machine) && !ui_menu_is_force_game_select())
- video_frame_update();
+ video_frame_update(FALSE);
/* clear the handler and force an update */
ui_set_handler(handler_ingame, 0);
- video_frame_update();
+ video_frame_update(FALSE);
}
/* if we're the empty driver, force the menus on */
@@ -400,7 +400,7 @@ void ui_set_startup_text(const char *text, int force)
if (force || (curtime - lastupdatetime) > osd_ticks_per_second() / 4)
{
lastupdatetime = curtime;
- video_frame_update();
+ video_frame_update(FALSE);
}
}