diff options
Diffstat (limited to 'sword2/sword2.cpp')
-rw-r--r-- | sword2/sword2.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp index d023ebdfb5..347b11beaa 100644 --- a/sword2/sword2.cpp +++ b/sword2/sword2.cpp @@ -235,7 +235,7 @@ int Sword2Engine::init(GameDetector &detector) { _system->endGFXTransaction(); // Create the debugger as early as possible (but not before the - // graphics object!) so that errors can be displayed in it. In + // screen object!) so that errors can be displayed in it. In // particular, we want errors about missing files to be clearly // visible to the user. @@ -273,10 +273,7 @@ int Sword2Engine::init(GameDetector &detector) { if (saveExists(_saveSlot)) restoreGame(_saveSlot); else { - SaveLoadDialog dialog(this, kLoadDialog); - - _mouse->setMouse(NORMAL_MOUSE_ID); - + RestoreDialog dialog(this); if (!dialog.runModal()) startGame(); } |