diff options
| -rw-r--r-- | engines/lure/game.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/lure/game.cpp b/engines/lure/game.cpp index a871a3e831..2c25a016e9 100644 --- a/engines/lure/game.cpp +++ b/engines/lure/game.cpp @@ -415,7 +415,15 @@ void Game::displayBarrelAnimation() { AnimationSequence *anim = new AnimationSequence(screen, system, BARREL_ANIM_ID, palette, false); mouse.cursorOff(); + + Sound.killSounds(); + Sound.musicInterface_Play(0x3B, 0); + anim->show(); + + delete anim; + + Sound.killSounds(); mouse.cursorOn(); } |
