diff options
Diffstat (limited to 'engines/lure/lure.cpp')
-rw-r--r-- | engines/lure/lure.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp index 13173c8a96..e90059fa9b 100644 --- a/engines/lure/lure.cpp +++ b/engines/lure/lure.cpp @@ -118,14 +118,14 @@ LureEngine &LureEngine::getReference() { Common::Error LureEngine::go() { Game *gameInstance = new Game(); - + // If requested, load a savegame instead of showing the intro if (ConfMan.hasKey("save_slot")) { _gameToLoad = ConfMan.getInt("save_slot"); if (_gameToLoad < 0 || _gameToLoad > 999) _gameToLoad = -1; } - + if (_gameToLoad == -1) { if (ConfMan.getBool("copy_protection")) { CopyProtectionDialog *dialog = new CopyProtectionDialog(); @@ -249,7 +249,7 @@ void LureEngine::GUIError(const char *msg, ...) { GUIErrorMessage(buffer); } -void LureEngine::syncSoundSettings() { +void LureEngine::syncSoundSettings() { Sound.syncSounds(); } |