mirror of
https://github.com/libretro/RetroArch
synced 2025-02-05 06:40:07 +00:00
Fix ROM loading in RGUI.
menu_input_process() was skipped, so MODE_INIT wasn't set.
This commit is contained in:
parent
d2ea83729e
commit
41573976b0
@ -2148,7 +2148,7 @@ bool menu_iterate(void)
|
|||||||
if (driver.video_poke && driver.video_poke->set_texture_enable)
|
if (driver.video_poke && driver.video_poke->set_texture_enable)
|
||||||
driver.video_poke->set_texture_enable(driver.video_data, false, false);
|
driver.video_poke->set_texture_enable(driver.video_data, false, false);
|
||||||
|
|
||||||
if (input_entry_ret != 0 || (menu_input_process(NULL, NULL) != 0))
|
if (menu_input_process(NULL, NULL) || input_entry_ret)
|
||||||
goto deinit;
|
goto deinit;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user