diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sci.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/sci.cpp b/engines/sci/sci.cpp index e7b06e5e57..3edf76d9eb 100644 --- a/engines/sci/sci.cpp +++ b/engines/sci/sci.cpp @@ -132,8 +132,8 @@ Common::Error SciEngine::run() { return Common::kUnknownError; // Gui change - _gamestate->_gui = new SciGui(_gamestate, screen, palette, cursor); // new - //_gamestate->_gui = new SciGui32(_gamestate, screen, palette, cursor); // old + //_gamestate->_gui = new SciGui(_gamestate, screen, palette, cursor); // new + _gamestate->_gui = new SciGui32(_gamestate, screen, palette, cursor); // old if (game_init(_gamestate)) { /* Initialize */ warning("Game initialization failed: Aborting..."); |