aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2018-03-24 16:56:10 -0400
committerPaul Gilbert2018-03-24 16:56:10 -0400
commit8bd45a08f581f82e579784e76ede26d596f58adc (patch)
treee74eebaf250b8738d90762fb9ca6e24c1b132aca
parent4c5592f28666f8608d0509c8f53a65106fd11aaf (diff)
downloadscummvm-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.cpp2
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;
}