diff options
author | Filippos Karapetis | 2009-10-16 23:31:31 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-10-16 23:31:31 +0000 |
commit | a6445d602d4109e45ee5fcd8c53ce114d710fc74 (patch) | |
tree | 3f2502f3238a10a3591d76f1036dfd95fa1eb2de /engines | |
parent | e4c23834dd2972c75f6f698f9f55320c1784218f (diff) | |
download | scummvm-rg350-a6445d602d4109e45ee5fcd8c53ce114d710fc74.tar.gz scummvm-rg350-a6445d602d4109e45ee5fcd8c53ce114d710fc74.tar.bz2 scummvm-rg350-a6445d602d4109e45ee5fcd8c53ce114d710fc74.zip |
Reverted an accidental change in the last commit
svn-id: r45177
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..."); |