diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/he/script_v60he.cpp | 8 | ||||
-rw-r--r-- | engines/scumm/he/script_v70he.cpp | 3 |
2 files changed, 7 insertions, 4 deletions
diff --git a/engines/scumm/he/script_v60he.cpp b/engines/scumm/he/script_v60he.cpp index 29226cd939..8bbea49bd5 100644 --- a/engines/scumm/he/script_v60he.cpp +++ b/engines/scumm/he/script_v60he.cpp @@ -1138,13 +1138,13 @@ void ScummEngine_v60he::o60_soundOps() { int arg = pop(); switch (subOp) { - case 0xde: + case 222: _imuse->setMusicVolume(arg); break; - case 0xdf: - // Used in fbear introduction + case 223: + // WORKAROUND: For error in room script 228 (room 2) of fbear. break; - case 0xe0: + case 224: // Fatty Bear's Birthday surprise uses this when playing the // piano, but only when using one of the digitized instruments. // See also o6_startSound(). diff --git a/engines/scumm/he/script_v70he.cpp b/engines/scumm/he/script_v70he.cpp index 6b1f670e15..1ced349225 100644 --- a/engines/scumm/he/script_v70he.cpp +++ b/engines/scumm/he/script_v70he.cpp @@ -461,6 +461,9 @@ void ScummEngine_v70he::o70_startSound() { case 164: _heSndFlags |= 2; break; + case 222: + // WORKAROUND: For errors in room script 240 (room 4) of maze + break; case 224: _heSndSoundFreq = pop(); break; |