From 41573976b03059c74eee57b9563cae3168a6b0e0 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 18 Apr 2013 09:44:47 +0200 Subject: [PATCH] Fix ROM loading in RGUI. menu_input_process() was skipped, so MODE_INIT wasn't set. --- frontend/menu/rgui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/menu/rgui.c b/frontend/menu/rgui.c index 9dbd18b063..5925ff4bda 100644 --- a/frontend/menu/rgui.c +++ b/frontend/menu/rgui.c @@ -2148,7 +2148,7 @@ bool menu_iterate(void) if (driver.video_poke && driver.video_poke->set_texture_enable) 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; return true;