diff options
Diffstat (limited to 'src/osd/uwp/window.cpp')
-rw-r--r-- | src/osd/uwp/window.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/uwp/window.cpp b/src/osd/uwp/window.cpp index 81d20f358c9..870584772b2 100644 --- a/src/osd/uwp/window.cpp +++ b/src/osd/uwp/window.cpp @@ -314,7 +314,7 @@ void winwindow_process_events_periodic(running_machine &machine) // update once every 1/8th of a second if (currticks - last_event_check < std::chrono::milliseconds(1000 / 8)) return; - winwindow_process_events(machine, TRUE, false); + winwindow_process_events(machine, true, false); } //============================================================ @@ -359,7 +359,7 @@ inline static BOOL handle_keypress(windows_osd_interface *osd, int vkey, int dow // (main thread) //============================================================ -void winwindow_process_events(running_machine &machine, int ingame, bool nodispatch) +void winwindow_process_events(running_machine &machine, bool ingame, bool nodispatch) { // MSG message; |