diff options
author | Gregory Montoir | 2003-11-03 20:48:27 +0000 |
---|---|---|
committer | Gregory Montoir | 2003-11-03 20:48:27 +0000 |
commit | d85757987e893f53a34e08e6ef912dc86ffe619f (patch) | |
tree | 90b1e3c684d76202f07bd1b5f0747e9c4dc0b2dc | |
parent | 3f1476788406b0dba63c5c1f315c87206b89a50a (diff) | |
download | scummvm-rg350-d85757987e893f53a34e08e6ef912dc86ffe619f.tar.gz scummvm-rg350-d85757987e893f53a34e08e6ef912dc86ffe619f.tar.bz2 scummvm-rg350-d85757987e893f53a34e08e6ef912dc86ffe619f.zip |
oops
svn-id: r11111
-rw-r--r-- | queen/command.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/command.cpp b/queen/command.cpp index 145d7217ff..8b2d052309 100644 --- a/queen/command.cpp +++ b/queen/command.cpp @@ -231,7 +231,7 @@ void Command::executeCurrentAction(bool walk) { // process each associated command for the Object, until all done // or one of the Gamestate tests fails... int16 cond = 0; - CmdListData *com = &_cmdList[1]; + CmdListData *com = &_cmdList[0]; uint16 comId = 0; uint16 curCommand; for (curCommand = 1; curCommand <= comMax; ++curCommand) { @@ -272,7 +272,7 @@ void Command::executeCurrentAction(bool walk) { } } - debug(0, "Command::executeCurrentAction() - cond = %X", cond); + debug(0, "Command::executeCurrentAction() - cond = %X, com = %X", cond, curCommand); if (com->setAreas) { setAreas(comId); |