From 357db4fa5e8b789b296f43b5a89ac8102e9feec0 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Sat, 11 Jan 2025 15:29:42 -0500 Subject: [PATCH] A fix for configfile If you want an ex-coop theme then it's going to be an ex-coop theme, not a "make coopdx look a little more like ex-coop" theme. --- src/pc/configfile.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 8943b7d9f..e0836beed 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -739,6 +739,12 @@ NEXT_OPTION: if (configDjuiTheme >= DJUI_THEME_MAX) { configDjuiTheme = 0; } if (configDjuiScale >= 5) { configDjuiScale = 0; } + if (configExCoopTheme) { + configDjuiTheme = DJUI_THEME_LIGHT; + configDjuiThemeCenter = false; + configDjuiThemeFont = 1; + } + if (gCLIOpts.fullscreen == 1) { configWindow.fullscreen = true; } else if (gCLIOpts.fullscreen == 2) {