reduced duplicate code

svn-id: r9027
This commit is contained in:
Max Horn 2003-07-14 22:21:11 +00:00
parent 28e6e05025
commit b88b7f3389
2 changed files with 1 additions and 9 deletions

View file

@ -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) {