mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
prevent these tasks to run more than once on shutdown
This commit is contained in:
parent
558181e7dd
commit
f2a8b11ef7
@ -2159,9 +2159,12 @@ void retroarch_fail(int error_code, const char *error)
|
|||||||
|
|
||||||
bool retroarch_main_quit(void)
|
bool retroarch_main_quit(void)
|
||||||
{
|
{
|
||||||
|
if (!runloop_shutdown_initiated)
|
||||||
|
{
|
||||||
command_event(CMD_EVENT_AUTOSAVE_STATE, NULL);
|
command_event(CMD_EVENT_AUTOSAVE_STATE, NULL);
|
||||||
command_event(CMD_EVENT_DISABLE_OVERRIDES, NULL);
|
command_event(CMD_EVENT_DISABLE_OVERRIDES, NULL);
|
||||||
command_event(CMD_EVENT_RESTORE_DEFAULT_SHADER_PRESET, NULL);
|
command_event(CMD_EVENT_RESTORE_DEFAULT_SHADER_PRESET, NULL);
|
||||||
|
}
|
||||||
|
|
||||||
runloop_shutdown_initiated = true;
|
runloop_shutdown_initiated = true;
|
||||||
rarch_menu_running_finished();
|
rarch_menu_running_finished();
|
||||||
|
Loading…
Reference in New Issue
Block a user