diff options
Diffstat (limited to 'gui/newgui.cpp')
-rw-r--r-- | gui/newgui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index eefb3e2f64..ad1933863a 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -139,7 +139,8 @@ bool NewGui::loadNewTheme(const Common::String &style) { delete _theme; _theme = 0; - if (style.compareToIgnoreCase("classic (builtin)") == 0) { + if (style.compareToIgnoreCase("classic (builtin)") == 0 || + style.compareToIgnoreCase("classic") == 0) { _theme = new ThemeClassic(_system, style); } else { if (Theme::themeConfigUseable(style, "", &styleType, &cfg)) { |