diff options
author | 2015-11-11 18:07:13 +0100 | |
---|---|---|
committer | 2015-11-11 18:07:13 +0100 | |
commit | 19ff46c113c79b8d0b19acea6fe260b78ae1955d (patch) | |
tree | bba839c347d9e768112ab5759adcc71c1cea03eb /src/emu/ui/ui.cpp | |
parent | a89530313f3c67cfc3be24a610fca1928e3edb70 (diff) |
More cleanups (nw)
Diffstat (limited to 'src/emu/ui/ui.cpp')
-rw-r--r-- | src/emu/ui/ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/ui.cpp b/src/emu/ui/ui.cpp index e92775be02d..046aa8bfa18 100644 --- a/src/emu/ui/ui.cpp +++ b/src/emu/ui/ui.cpp @@ -369,7 +369,7 @@ void ui_manager::display_startup_screens(bool first_time, bool show_disclaimer) // clear the input memory machine().input().reset_polling(); - while (machine().input().poll_switches() != INPUT_CODE_INVALID) ; + while (machine().input().poll_switches() != INPUT_CODE_INVALID) { } // loop while we have a handler while (m_handler_callback != handler_ingame && !machine().scheduled_event_pending() && !ui_menu::stack_has_special_main_menu()) |