aboutsummaryrefslogtreecommitdiff
path: root/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sound.cpp')
-rw-r--r--sound.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound.cpp b/sound.cpp
index ffcb6e6518..b7ff534e3b 100644
--- a/sound.cpp
+++ b/sound.cpp
@@ -89,7 +89,9 @@ void Scumm::processSoundQues() {
}
void Scumm::playSound(int sound) {
- SoundEngine *se = (SoundEngine*)_soundEngine;
+ SoundEngine *se = (SoundEngine*)_soundEngine;
+ if (_gameId == GID_ZAK256) return; /* FIXME */
+
if (se) {
getResourceAddress(rtSound, sound);
se->start_sound(sound);