diff options
author | Johannes Schickel | 2006-10-08 20:19:23 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-10-08 20:19:23 +0000 |
commit | cfe6d9725cfbba51fa5593b805cb617cb20f3b03 (patch) | |
tree | a5979c8b6773ab67111f76272eae19a2d8df5828 | |
parent | 3e59682e34e96a9bc41c502ada4b9d0948b46aa3 (diff) | |
download | scummvm-rg350-cfe6d9725cfbba51fa5593b805cb617cb20f3b03.tar.gz scummvm-rg350-cfe6d9725cfbba51fa5593b805cb617cb20f3b03.tar.bz2 scummvm-rg350-cfe6d9725cfbba51fa5593b805cb617cb20f3b03.zip |
Making engines working again.
svn-id: r24232
-rw-r--r-- | gui/newgui.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index dd2819fa57..71c50721cc 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -158,7 +158,6 @@ bool NewGui::loadNewTheme(const Common::String &style) { } _theme->resetDrawArea(); - _theme->enable(); if (!oldTheme.empty()) screenChange(); @@ -240,8 +239,8 @@ void NewGui::runLoop() { // HACK to change the cursor to the new themes one if (_themeChange) { - if (useStandardCurs) - PaletteMan.popCursorPalette(); + _theme->enable(); + PaletteMan.popCursorPalette(); CursorMan.popCursor(); |