Merge pull request #1090 from jeapostrophe/master

Allow the menu to run immediately again if there is input
This commit is contained in:
Twinaphex 2014-10-04 16:07:29 +02:00
commit eb9eafe7e1

View File

@ -3261,7 +3261,8 @@ int rarch_main_iterate(void)
if (!menu_iterate(input, old_input, trigger_input))
rarch_main_set_state(RARCH_ACTION_STATE_MENU_RUNNING_FINISHED);
ret = 1;
if ( ! input )
ret = 1;
goto success;
}
#endif