diff options
-rw-r--r-- | engines/lure/game.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/lure/game.cpp b/engines/lure/game.cpp index 73bda09aed..8b7c7cdb20 100644 --- a/engines/lure/game.cpp +++ b/engines/lure/game.cpp @@ -380,6 +380,9 @@ void Game::displayChuteAnimation() { debugC(ERROR_INTERMEDIATE, kLureDebugAnimations, "Starting chute animation"); mouse.cursorOff(); + Sound.killSounds(); + Sound.musicInterface_Play(0x40, 0); + AnimationSequence *anim = new AnimationSequence(screen, system, CHUTE_ANIM_ID, palette, false); anim->show(); @@ -395,6 +398,7 @@ void Game::displayChuteAnimation() { anim->show(); delete anim; + Sound.killSounds(); mouse.cursorOn(); fields.setField(AREA_FLAG, 1); } |