Remove left overs
svn-id: r14800
This commit is contained in:
parent
22fb004e20
commit
09b3b6cb57
1 changed files with 1 additions and 7 deletions
|
@ -1348,21 +1348,15 @@ bool ScummEngine::akos_increaseAnim(Actor *a, int chan, const byte *aksq, const
|
|||
}
|
||||
|
||||
void ScummEngine::akos_queCommand(byte cmd, Actor *a, int param_1, int param_2) {
|
||||
if (_queuePos > 32)
|
||||
error("overflow");
|
||||
checkRange(32, 0, _queuePos, "akos_queCommand overflow");
|
||||
;
|
||||
_queuePos++;
|
||||
_queueCmd[_queuePos] = cmd;
|
||||
_queueActor[_queuePos] = a->number;
|
||||
_queueParam1[_queuePos] = param_1;
|
||||
_queueParam2[_queuePos] = param_2;
|
||||
|
||||
|
||||
warning("_queuePos %d", _queuePos);
|
||||
}
|
||||
|
||||
|
||||
|
||||
void ScummEngine::akos_processQueue() {
|
||||
byte cmd;
|
||||
int actor, param_1, param_2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue