aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/newgui.cpp6
-rw-r--r--gui/themes/modern.ini (renamed from gui/themes/default-theme.ini)0
-rw-r--r--gui/themes/modern.zip (renamed from gui/themes/default-theme.zip)bin32709 -> 32709 bytes
3 files changed, 5 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index 881b12766e..ea43be07b1 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -96,8 +96,12 @@ NewGui::NewGui() : _needRedraw(false),
_currentKeyDown.keycode = 0;
#ifndef DISABLE_FANCY_THEMES
- ConfMan.registerDefault("gui_theme", "default-theme");
+ ConfMan.registerDefault("gui_theme", "default");
Common::String style = ConfMan.get("gui_theme");
+ // The default theme for now is the 'modern' theme.
+ if (scumm_stricmp(style.c_str(), "default") == 0)
+ style = "modern";
+
if (scumm_stricmp(style.c_str(), "classic") == 0) {
#endif
_theme = new ThemeClassic(_system);
diff --git a/gui/themes/default-theme.ini b/gui/themes/modern.ini
index 21ecacc6c7..21ecacc6c7 100644
--- a/gui/themes/default-theme.ini
+++ b/gui/themes/modern.ini
diff --git a/gui/themes/default-theme.zip b/gui/themes/modern.zip
index 8c44d3e16f..8c44d3e16f 100644
--- a/gui/themes/default-theme.zip
+++ b/gui/themes/modern.zip
Binary files differ