diff options
-rw-r--r-- | scumm/script_v5.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 2eceedbfa5..bdcb3ca689 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1998,6 +1998,11 @@ void Scumm_v5::o5_setVarRange() { void Scumm_v5::o5_startMusic() { _sound->addSoundToQueue(getVarOrDirectByte(0x80)); + if (_gameId == GID_ZAK256) { + int a = fetchScriptByte(); + int b = fetchScriptByte(); + warning("Just skipped two bytes of unknown meaning: %d, %d", a, b); + } } void Scumm_v5::o5_startSound() { |