diff options
Diffstat (limited to 'sound.cpp')
-rw-r--r-- | sound.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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); |