diff options
author | Paul Gilbert | 2018-03-24 16:56:10 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-24 16:56:10 -0400 |
commit | 8bd45a08f581f82e579784e76ede26d596f58adc (patch) | |
tree | e74eebaf250b8738d90762fb9ca6e24c1b132aca | |
parent | 4c5592f28666f8608d0509c8f53a65106fd11aaf (diff) | |
download | scummvm-rg350-8bd45a08f581f82e579784e76ede26d596f58adc.tar.gz scummvm-rg350-8bd45a08f581f82e579784e76ede26d596f58adc.tar.bz2 scummvm-rg350-8bd45a08f581f82e579784e76ede26d596f58adc.zip |
XEEN: Fix voice sample when leaving tavern
-rw-r--r-- | engines/xeen/locations.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/locations.cpp b/engines/xeen/locations.cpp index 61a96260a3..95bb7c7649 100644 --- a/engines/xeen/locations.cpp +++ b/engines/xeen/locations.cpp @@ -786,7 +786,7 @@ void TavernLocation::farewell() { Sound &sound = *g_vm->_sound; sound.stopSound(); - sound.playVoice(_ccNum ? "gdluck1.voc" : "goodbye.voc", 1); + sound.playVoice(_ccNum ? "gdluck1.voc" : "goodbye.voc"); map.mazeData()._mazeNumber = party._mazeId; } |