Added sound to animation of falling down the chute

svn-id: r29451
This commit is contained in:
Paul Gilbert 2007-11-08 11:06:24 +00:00
parent cafc46fc8f
commit 27a1f38862

View File

@ -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);
}