ASYLUM: Implement Actor::updateDirection()

- Rename all fields related to the next actor state (as set by script)
- Rename process_401830() to processNext()
This commit is contained in:
Julien Templier 2011-07-20 00:50:00 -04:00 committed by Eugene Sandulenko
parent 1706cc2ff7
commit 64c70dea97
No known key found for this signature in database
GPG key ID: 014D387312D34F08
4 changed files with 315 additions and 126 deletions

View file

@ -1764,7 +1764,7 @@ END_OPCODE
IMPLEMENT_OPCODE(ProcessActor)
Actor *actor = getScene()->getActor(cmd->param1);
actor->process_401830(cmd->param2, cmd->param3, cmd->param4, cmd->param5, cmd->param6, cmd->param7, cmd->param8, cmd->param9);
actor->processNext(cmd->param2, cmd->param3, (ActorDirection)cmd->param4, Common::Point(cmd->param5, cmd->param6), cmd->param7, Common::Point(cmd->param8, cmd->param9));
END_OPCODE
//////////////////////////////////////////////////////////////////////////