aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/akos.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/akos.cpp b/scumm/akos.cpp
index a4289b3178..1f6062b888 100644
--- a/scumm/akos.cpp
+++ b/scumm/akos.cpp
@@ -1347,24 +1347,25 @@ void ScummEngine::akos_queCommand(byte cmd, Actor *a, int param_1, int param_2)
case 7:
if (param_1 != 0) {
if (_imuseDigital) {
-// _imuseDigital->doCommand(12, 0x600, param_1, 0, 0, 0, 0, 0);
+// _imuseDigital->parseScriptCmds(12, param_1, 0x600, param_2, 0, 0, 0, 0);
}
}
break;
case 8:
if (param_1 != 0) {
if (_imuseDigital) {
-// _imuseDigital->doCommand(12, 0x700, param_1, 0, 0, 0, 0, 0);
+// _imuseDigital->parseScriptCmds(12, param_1, 0x700, param_2, 0, 0, 0, 0);
}
}
break;
case 9:
if (param_1 != 0) {
if (_imuseDigital) {
-// _imuseDigital->doCommand(12, 0x500, param_1, 0, 0, 0, 0, 0);
+// _imuseDigital->parseScriptCmds(12, param_1, 0x500, param_2, 0, 0, 0, 0);
}
}
break;
+
default:
warning("akos_queCommand(%d,%d,%d,%d)", cmd, a->number, param_1, param_2);
}