From ace60b5827280d19bee81d7835a85f3f470d3c88 Mon Sep 17 00:00:00 2001 From: Jay McCarthy Date: Wed, 31 Dec 2014 15:30:28 -0500 Subject: [PATCH] Include auto save state in main_exit_save_config so that iOS users actually get auto saving --- frontend/frontend.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/frontend.c b/frontend/frontend.c index d384ef433b..bea5137a56 100644 --- a/frontend/frontend.c +++ b/frontend/frontend.c @@ -81,6 +81,8 @@ void main_exit_save_config(void) g_settings.core_specific_config) config_save_file(g_extern.core_specific_config_path); } + + rarch_main_command(RARCH_CMD_AUTOSAVE_STATE); } void main_exit(args_type() args)