aboutsummaryrefslogtreecommitdiff
path: root/gui/newgui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/newgui.cpp')
-rw-r--r--gui/newgui.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp
index d8acabf477..dd2819fa57 100644
--- a/gui/newgui.cpp
+++ b/gui/newgui.cpp
@@ -128,8 +128,8 @@ bool NewGui::loadNewTheme(const Common::String &style) {
Common::String oldTheme = (_theme != 0) ? _theme->getStylefileName() : "";
delete _theme;
- if (style.compareToIgnoreCase("classic") == 0) {
- _theme = new ThemeClassic(_system);
+ if (style.compareToIgnoreCase("classic (builtin)") == 0) {
+ _theme = new ThemeClassic(_system, style);
} else {
if (Theme::themeConfigUseable(style, "", &styleType, &cfg)) {
if (0 == styleType.compareToIgnoreCase("classic"))