Fix bugs mentioned in #1730147 "GUI: Classic themes need to be updated"

svn-id: r27061
This commit is contained in:
Eugene Sandulenko 2007-06-03 08:11:19 +00:00
parent 3ba184b21f
commit 09ae91b118
2 changed files with 68 additions and 50 deletions

View file

@ -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)) {