ui: fix initial message popups not showing on d3d/bgfx

This commit is contained in:
hap 2020-07-10 10:50:16 +02:00
parent 6b14322fc1
commit 3db9e11031

View File

@ -311,6 +311,7 @@ ui_manager* mame_machine_manager::create_ui(running_machine& machine)
machine.add_notifier(MACHINE_NOTIFY_RESET, machine_notify_delegate(&mame_machine_manager::reset, this));
m_ui->set_startup_text("Initializing...", true);
machine.video().frame_update(); // force another video update, some video backends need it
return m_ui.get();
}