diff options
Diffstat (limited to 'scumm/script_v8.cpp')
-rw-r--r-- | scumm/script_v8.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 67114f83ab..1ce60730e2 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1078,18 +1078,12 @@ void ScummEngine_v8::o8_actorOps() { break; case 0x87: // SO_ACTOR_VOLUME Set volume of actor speech a->talkVolume = pop(); - _imuseDigital->setVolume(kTalkSoundID, a->talkVolume); break; case 0x88: // SO_ACTOR_FREQUENCY Set frequency of actor speech a->talkFrequency = pop(); break; case 0x89: // SO_ACTOR_PAN - // 0 = left, 64 = middle, 127 = right. a->talkPan = pop(); - if (_actorToPrintStrFor == a->number) { - _imuseDigital->setPan(kTalkSoundID, a->talkPan); - } - break; default: error("o8_actorOps: default case 0x%x", subOp); |