From e092ac4d7afcbdffdb203c27c9fefb72de02b142 Mon Sep 17 00:00:00 2001 From: KiritoDv Date: Tue, 20 Jul 2021 16:37:05 -0500 Subject: [PATCH] Fixed antialias config --- src/pc/configfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 39ef01a6..f6ffdeb5 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -116,6 +116,8 @@ static const struct ConfigOption options[] = { {.name = "window_y", .type = CONFIG_TYPE_UINT, .uintValue = &configWindow.y}, {.name = "window_w", .type = CONFIG_TYPE_UINT, .uintValue = &configWindow.w}, {.name = "window_h", .type = CONFIG_TYPE_UINT, .uintValue = &configWindow.h}, + {.name = "aa_level", .type = CONFIG_TYPE_UINT, .uintValue = &configWindow.antialias_level}, + {.name = "aa_enabled", .type = CONFIG_TYPE_BOOL, .uintValue = &configWindow.enable_antialias}, {.name = "vsync", .type = CONFIG_TYPE_BOOL, .boolValue = &configWindow.vsync}, {.name = "texture_filtering", .type = CONFIG_TYPE_UINT, .uintValue = &configFiltering}, {.name = "master_volume", .type = CONFIG_TYPE_UINT, .uintValue = &configMasterVolume},