From 5ee245651eb3edf5822e5989cf35849ca834ef6c Mon Sep 17 00:00:00 2001 From: FunkyFr3sh Date: Tue, 1 Oct 2024 20:58:00 +0200 Subject: [PATCH] enable maintain aspect ratio by default --- src/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index c736c97..80b9ee4 100644 --- a/src/config.c +++ b/src/config.c @@ -34,7 +34,7 @@ void cfg_load() GET_INT(g_config.window_rect.bottom, "height", 0); GET_BOOL(g_config.fullscreen, "fullscreen", FALSE); GET_BOOL(g_config.windowed, "windowed", FALSE); - GET_BOOL(g_config.maintas, "maintas", FALSE); + GET_BOOL(g_config.maintas, "maintas", TRUE); GET_BOOL(g_config.boxing, "boxing", FALSE); GET_INT(g_config.maxfps, "maxfps", -1); GET_BOOL(g_config.vsync, "vsync", FALSE); @@ -173,7 +173,7 @@ static void cfg_create_ini() "windowed=true\n" "\n" "; Maintain aspect ratio\n" - "maintas=false\n" + "maintas=true\n" "\n" "; Windowboxing / Integer Scaling\n" "boxing=false\n"