From ffdb4a5b08cde2a0ec2943330e01657410e784cd Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 23 Oct 2013 13:54:35 +0200 Subject: [PATCH] (RGUI/RMenu) Should save SRAM Autosave now --- settings.c | 1 + 1 file changed, 1 insertion(+) diff --git a/settings.c b/settings.c index 2b4f54c0a0..39ef39fca9 100644 --- a/settings.c +++ b/settings.c @@ -1059,6 +1059,7 @@ bool config_save_file(const char *path) config_set_bool(conf, "video_shader_enable", g_settings.video.shader_enable); config_set_float(conf, "video_aspect_ratio", g_settings.video.aspect_ratio); config_set_float(conf, "video_xscale", g_settings.video.xscale); + config_set_int(conf, "autosave_interval", g_settings.autosave_interval); config_set_float(conf, "video_yscale", g_settings.video.yscale); config_set_bool(conf, "video_crop_overscan", g_settings.video.crop_overscan); config_set_bool(conf, "video_scale_integer", g_settings.video.scale_integer);