From f3e1392a5123a3d45ee1baf3423a46e39540a46d Mon Sep 17 00:00:00 2001 From: MysterD Date: Sun, 7 May 2023 13:22:08 -0700 Subject: [PATCH] Possible config corruption fix --- src/pc/configfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index f444e0536..e88df77cb 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -157,7 +157,7 @@ char configLanguage[MAX_CONFIG_STRING] = ""; bool configForce4By3 = false; char configCoopNetIp[MAX_CONFIG_STRING] = DEFAULT_COOPNET_IP; unsigned int configCoopNetPort = DEFAULT_COOPNET_PORT; -char configPassword[MAX_PLAYER_STRING] = ""; +char configPassword[MAX_CONFIG_STRING] = ""; static const struct ConfigOption options[] = { {.name = "fullscreen", .type = CONFIG_TYPE_BOOL, .boolValue = &configWindow.fullscreen},