1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

enable maintain aspect ratio by default

This commit is contained in:
FunkyFr3sh 2024-10-01 20:58:00 +02:00
parent ef0fff19bd
commit 5ee245651e

View File

@ -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"