From 706f6ab1f87911ca8e25983d261ccc97b868ed6e Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sun, 19 Nov 2023 19:41:49 -0500 Subject: [PATCH] Oops, fix silly mistake --- src/pc/configfile.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 227ae97d7..45593798d 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -601,10 +601,10 @@ NEXT_OPTION: } void configfile_load(void) { -#ifdef DEVELOPMENT - configfile_load_internal(configfile_name(), NULL); -#else bool configReadError = false; +#ifdef DEVELOPMENT + configfile_load_internal(configfile_name(), &configReadError); +#else configfile_load_internal(configfile_name(), &configReadError); if (configReadError) { configfile_load_internal(configfile_backup_name(), &configReadError);