From 4bee63a251d63ed6872e4a5ffc3e8c31f7f58f96 Mon Sep 17 00:00:00 2001 From: Isaac0-dev <62234577+Isaac0-dev@users.noreply.github.com> Date: Thu, 6 Feb 2025 16:10:47 +1000 Subject: [PATCH] make this default to benefit casual users --- src/pc/configfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index fe51331f1..c799fc7b3 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -188,7 +188,7 @@ unsigned int configDjuiScale = 0; // other unsigned int configRulesVersion = 0; bool configCompressOnStartup = false; -bool configSkipPackGeneration = false; +bool configSkipPackGeneration = true; // secrets bool configExCoopTheme = false; @@ -747,7 +747,7 @@ NEXT_OPTION: configDjuiThemeFont = 1; } - if (gCLIOpts.fullscreen == 1) { + if (gCLIOpts.fullscreen == 1) { configWindow.fullscreen = true; } else if (gCLIOpts.fullscreen == 2) { configWindow.fullscreen = false;