aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/exec_ns.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-01-08 20:32:29 +0000
committerNicola Mettifogo2008-01-08 20:32:29 +0000
commit1b80eedaa18c38ffa2203eb661fda44d245ca6da (patch)
tree999c51eac74608de97f90bcb218442c4debc7741 /engines/parallaction/exec_ns.cpp
parentcd23db6ce8fb660320804e1355f37558c2ebccc4 (diff)
downloadscummvm-rg350-1b80eedaa18c38ffa2203eb661fda44d245ca6da.tar.gz
scummvm-rg350-1b80eedaa18c38ffa2203eb661fda44d245ca6da.tar.bz2
scummvm-rg350-1b80eedaa18c38ffa2203eb661fda44d245ca6da.zip
Added a proper _name member to Zone, instead of using the label text.
svn-id: r30343
Diffstat (limited to 'engines/parallaction/exec_ns.cpp')
-rw-r--r--engines/parallaction/exec_ns.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/exec_ns.cpp b/engines/parallaction/exec_ns.cpp
index 18142f9101..f2ee015498 100644
--- a/engines/parallaction/exec_ns.cpp
+++ b/engines/parallaction/exec_ns.cpp
@@ -346,7 +346,7 @@ void Parallaction_ns::drawAnimations() {
else
_si = _gfx->queryMask(v18->_top + v18->height());
- debugC(9, kDebugExec, "jobDisplayAnimations(%s, x:%i, y:%i, z:%i, w:%i, h:%i, f:%i/%i, %p)", v18->_label._text, v18->_left, v18->_top, _si, v14.w, v14.h,
+ debugC(9, kDebugExec, "jobDisplayAnimations(%s, x:%i, y:%i, z:%i, w:%i, h:%i, f:%i/%i, %p)", v18->_name, v18->_left, v18->_top, _si, v14.w, v14.h,
frame, v18->getFrameNum(), v14.pixels);
_gfx->blitCnv(&v14, v18->_left, v18->_top, _si, Gfx::kBitBack);
@@ -410,7 +410,7 @@ void Parallaction_ns::runScripts() {
InstructionList::iterator inst = a->_program->_ip;
while (((*inst)->_index != INST_SHOW) && (a->_flags & kFlagsActing)) {
- debugC(9, kDebugExec, "Animation: %s, instruction: %s", a->_label._text, _instructionNamesRes[(*inst)->_index - 1]);
+ debugC(9, kDebugExec, "Animation: %s, instruction: %s", a->_name, _instructionNamesRes[(*inst)->_index - 1]);
_instRunCtxt.inst = inst;
_instRunCtxt.a = a;
@@ -514,7 +514,7 @@ void Parallaction::displayComment(ExamineData *data) {
uint16 Parallaction::runZone(Zone *z) {
- debugC(3, kDebugExec, "runZone (%s)", z->_label._text);
+ debugC(3, kDebugExec, "runZone (%s)", z->_name);
uint16 subtype = z->_type & 0xFFFF;