diff --git a/scumm/intern.h b/scumm/intern.h index e3ad9eb909c..be7382d01ed 100644 --- a/scumm/intern.h +++ b/scumm/intern.h @@ -578,7 +578,6 @@ protected: void o8_cameraOps(); void o8_verbOps(); - void o8_soundKludge(); void o8_system(); void o8_startVideo(); void o8_kernelSetFunctions(); diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 7da8f8a906e..483adac13b0 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -261,7 +261,7 @@ void Scumm_v8::setupOpcodes() { /* B0 */ OPCODE(o6_startMusic), OPCODE(o6_stopSound), - OPCODE(o8_soundKludge), + OPCODE(o6_soundKludge), OPCODE(o8_system), /* B4 */ OPCODE(o6_saveRestoreVerbs), @@ -1234,13 +1234,6 @@ void Scumm_v8::o8_verbOps() { } } -void Scumm_v8::o8_soundKludge() { - int args[16]; - int num = getStackList(args, ARRAYSIZE(args)); - - _sound->soundKludge(args, num); -} - void Scumm_v8::o8_system() { byte subOp = fetchScriptByte(); switch (subOp) {