From 09ae91b118938bf92ff0c6ee84f4f07fa1974142 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sun, 3 Jun 2007 08:11:19 +0000 Subject: Fix bugs mentioned in #1730147 "GUI: Classic themes need to be updated" svn-id: r27061 --- gui/newgui.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gui/newgui.cpp') 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)) { -- cgit v1.2.3