mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-28 05:38:24 +00:00
Use -1 for indicating we want to exit out of rarch_main_iterate
This commit is contained in:
parent
e79d3d1630
commit
f86ad85fcd
@ -56,7 +56,7 @@
|
||||
|
||||
int main_entry_decide(signature(), args_type() args)
|
||||
{
|
||||
if (rarch_main_iterate())
|
||||
if (rarch_main_iterate() == -1)
|
||||
{
|
||||
if (g_extern.core_shutdown_initiated
|
||||
&& g_settings.load_dummy_on_core_shutdown)
|
||||
|
31
retroarch.c
31
retroarch.c
@ -3217,9 +3217,23 @@ static int do_menu_oneshot(
|
||||
}
|
||||
#endif
|
||||
|
||||
static inline int time_to_exit(retro_input_t input)
|
||||
{
|
||||
if (
|
||||
g_extern.system.shutdown
|
||||
|| check_quit_key_func(input)
|
||||
|| (g_extern.max_frames && g_extern.frame_count >=
|
||||
g_extern.max_frames)
|
||||
|| (g_extern.bsv.movie_end && g_extern.bsv.eof_exit)
|
||||
|| !driver.video->alive(driver.video_data)
|
||||
)
|
||||
return 1;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Returns:
|
||||
* 0 - Successful iteration.
|
||||
* 1 - Quit of iteration loop.
|
||||
* 0 - Successful iteration.
|
||||
* -1 - Quit out of iteration loop.
|
||||
*/
|
||||
int rarch_main_iterate(void)
|
||||
{
|
||||
@ -3241,15 +3255,8 @@ int rarch_main_iterate(void)
|
||||
|
||||
trigger_input = input & ~old_input;
|
||||
|
||||
/* Time to drop? */
|
||||
if (
|
||||
g_extern.system.shutdown ||
|
||||
check_quit_key_func(input) ||
|
||||
(g_extern.max_frames &&
|
||||
g_extern.frame_count >= g_extern.max_frames) ||
|
||||
(g_extern.bsv.movie_end && g_extern.bsv.eof_exit) ||
|
||||
!driver.video->alive(driver.video_data))
|
||||
return 1;
|
||||
if (time_to_exit(input))
|
||||
return -1;
|
||||
|
||||
if (g_extern.system.frame_time.callback)
|
||||
update_frame_time();
|
||||
@ -3265,7 +3272,7 @@ int rarch_main_iterate(void)
|
||||
if (g_extern.exec)
|
||||
{
|
||||
g_extern.exec = false;
|
||||
return 1;
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (do_state_checks(input, old_input, trigger_input))
|
||||
|
Loading…
Reference in New Issue
Block a user