diff options
Diffstat (limited to 'engines/kyra/lol.cpp')
-rw-r--r-- | engines/kyra/lol.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp index 30687e8101..2834e179f4 100644 --- a/engines/kyra/lol.cpp +++ b/engines/kyra/lol.cpp @@ -535,7 +535,6 @@ Common::Error LoLEngine::init() { Common::Error LoLEngine::go() { setupPrologueData(true); - _sound->setSoundList(&_soundData[kMusicIntro]); if (!saveFileLoadable(0) || _flags.isDemo) showIntro(); @@ -612,10 +611,13 @@ Common::Error LoLEngine::go() { _tim = new TIMInterpreter_LoL(this, _screen, _system); assert(_tim); - if (!shouldQuit() && (processSelection == 0 || processSelection == 3)) + if (shouldQuit()) + return Common::kNoError; + + if (processSelection == 0 || processSelection == 3) startup(); - if (!shouldQuit() && processSelection == 0) + if (processSelection == 0) startupNew(); if (!shouldQuit() && (processSelection == 0 || processSelection == 3)) { |