aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/exec_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-02-09 23:26:45 +0000
committerNicola Mettifogo2008-02-09 23:26:45 +0000
commit435c437f6d118842ded3a0020168a1080ea2d0c9 (patch)
treebf16e7da40a22b13e993d997b901b7428f108108 /engines/parallaction/exec_ns.cpp
parentcf724e889ce551082a1c3e443b11e9523f068e8d (diff)
downloadscummvm-rg350-435c437f6d118842ded3a0020168a1080ea2d0c9.tar.gz
scummvm-rg350-435c437f6d118842ded3a0020168a1080ea2d0c9.tar.bz2
scummvm-rg350-435c437f6d118842ded3a0020168a1080ea2d0c9.zip
More refactoring for command parsing/execution.
svn-id: r30841
Diffstat (limited to 'engines/parallaction/exec_ns.cpp')
-rw-r--r--engines/parallaction/exec_ns.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/exec_ns.cpp b/engines/parallaction/exec_ns.cpp
index f86930a56e..821d058ac9 100644
--- a/engines/parallaction/exec_ns.cpp
+++ b/engines/parallaction/exec_ns.cpp
@@ -225,7 +225,7 @@ DECLARE_COMMAND_OPCODE(clear) {
DECLARE_COMMAND_OPCODE(start) {
- _cmdRunCtxt.cmd->u._animation->_flags |= kFlagsActing;
+ _cmdRunCtxt.cmd->u._zone->_flags |= kFlagsActing;
}
@@ -315,7 +315,7 @@ DECLARE_COMMAND_OPCODE(move) {
DECLARE_COMMAND_OPCODE(stop) {
- _cmdRunCtxt.cmd->u._animation->_flags &= ~kFlagsActing;
+ _cmdRunCtxt.cmd->u._zone->_flags &= ~kFlagsActing;
}