Merge pull request #6947 from Dwedit/message_loop_fix

Moved WIN32 message loop from win32_check_window to before runloop_iterate
This commit is contained in:
Twinaphex 2018-07-04 21:30:11 +02:00 committed by GitHub
commit a0b1937584
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -138,7 +138,12 @@ int rarch_main(int argc, char *argv[], void *data)
do
{
unsigned sleep_ms = 0;
int ret = runloop_iterate(&sleep_ms);
int ret;
const ui_application_t *application =
ui_companion_driver_get_application_ptr();
if (application)
application->process_events();
ret = runloop_iterate(&sleep_ms);
if (ret == 1 && sleep_ms > 0)
retro_sleep(sleep_ms);

View File

@ -1117,12 +1117,7 @@ void win32_check_window(bool *quit, bool *resize,
unsigned *width, unsigned *height)
{
#if !defined(_XBOX)
const ui_application_t *application =
ui_companion_driver_get_application_ptr();
if (application)
application->process_events();
*quit = g_win32_quit;
#endif
if (g_win32_resized)
{
@ -1131,6 +1126,7 @@ void win32_check_window(bool *quit, bool *resize,
*height = g_win32_resize_height;
g_win32_resized = false;
}
#endif
}
bool win32_suppress_screensaver(void *data, bool enable)