From 04106010836e273be8d9b9efc34d713557b1353b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Fri, 16 Jan 2015 10:45:39 -0300 Subject: [PATCH] (settings) Save video_aspect_ratio_auto on shutdown --- settings.c | 1 + 1 file changed, 1 insertion(+) diff --git a/settings.c b/settings.c index b99ee2d28a..9230f40519 100644 --- a/settings.c +++ b/settings.c @@ -1783,6 +1783,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_bool(conf, "video_aspect_ratio_auto", g_settings.video.aspect_ratio_auto); config_set_bool(conf, "video_windowed_fullscreen", g_settings.video.windowed_fullscreen); config_set_float(conf, "video_scale", g_settings.video.scale);