Get rid of unnecessary function main_entry_iterate_shutdown
This commit is contained in:
parent
ff4e0928f4
commit
7b49e072ff
|
@ -55,27 +55,20 @@
|
||||||
|
|
||||||
#define MAX_ARGS 32
|
#define MAX_ARGS 32
|
||||||
|
|
||||||
static int main_entry_iterate_shutdown(signature(),
|
|
||||||
args_type() args)
|
|
||||||
{
|
|
||||||
(void)args;
|
|
||||||
|
|
||||||
if (g_extern.core_shutdown_initiated
|
|
||||||
&& g_settings.load_dummy_on_core_shutdown)
|
|
||||||
{
|
|
||||||
/* Load dummy core instead of exiting RetroArch completely. */
|
|
||||||
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
|
|
||||||
g_extern.core_shutdown_initiated = false;
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main_entry_decide(signature(), args_type() args)
|
int main_entry_decide(signature(), args_type() args)
|
||||||
{
|
{
|
||||||
if (!rarch_main_iterate())
|
if (!rarch_main_iterate())
|
||||||
return main_entry_iterate_shutdown(signature_expand(), args);
|
{
|
||||||
|
if (g_extern.core_shutdown_initiated
|
||||||
|
&& g_settings.load_dummy_on_core_shutdown)
|
||||||
|
{
|
||||||
|
/* Load dummy core instead of exiting RetroArch completely. */
|
||||||
|
rarch_main_command(RARCH_CMD_PREPARE_DUMMY);
|
||||||
|
g_extern.core_shutdown_initiated = false;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
if (driver.frontend_ctx && driver.frontend_ctx->process_events)
|
||||||
driver.frontend_ctx->process_events(args);
|
driver.frontend_ctx->process_events(args);
|
||||||
|
|
Loading…
Reference in New Issue