From 3b6616f2cbf734477bcb992575aef7d176d3e0e0 Mon Sep 17 00:00:00 2001 From: Themaister Date: Sun, 6 Apr 2014 15:22:24 +0200 Subject: [PATCH] Set fullscreen_x/y in config_save. --- settings.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/settings.c b/settings.c index 3279fe5685..fab19d9937 100644 --- a/settings.c +++ b/settings.c @@ -1256,6 +1256,8 @@ bool config_save_file(const char *path) config_set_bool(conf, "video_threaded", g_settings.video.threaded); config_set_bool(conf, "video_fullscreen", g_settings.video.fullscreen); config_set_float(conf, "video_refresh_rate", g_settings.video.refresh_rate); + config_set_int(conf, "video_fullscreen_x", g_settings.video.fullscreen_x); + config_set_int(conf, "video_fullscreen_y", g_settings.video.fullscreen_y); config_set_string(conf, "video_driver", g_settings.video.driver); config_set_bool(conf, "video_vsync", g_settings.video.vsync); config_set_bool(conf, "video_hard_sync", g_settings.video.hard_sync);