mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-24 04:04:29 +00:00
(Menu) Don't call draw_frame if g_runloop.is_idle is true
This commit is contained in:
parent
9ad2484734
commit
72ba8abefa
@ -408,7 +408,7 @@ int menu_iterate(retro_input_t input,
|
||||
if (driver.menu_ctx && driver.menu_ctx->entry_iterate)
|
||||
ret = driver.menu_ctx->entry_iterate(action);
|
||||
|
||||
if (g_runloop.is_menu)
|
||||
if (g_runloop.is_menu && !g_runloop.is_idle)
|
||||
draw_frame();
|
||||
|
||||
if (driver.menu_ctx && driver.menu_ctx->set_texture)
|
||||
|
Loading…
x
Reference in New Issue
Block a user