aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/walk.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2008-01-28 13:10:49 +0000
committerNicola Mettifogo2008-01-28 13:10:49 +0000
commitcce8e2596019d462eb3e2f6e0375a41a8c510487 (patch)
tree21321537c25791d460ffb6301c2dcbe2fdf24b88 /engines/parallaction/walk.cpp
parent1888cbe50baabc7ac6c00849f31f7e13d6fe1028 (diff)
downloadscummvm-rg350-cce8e2596019d462eb3e2f6e0375a41a8c510487.tar.gz
scummvm-rg350-cce8e2596019d462eb3e2f6e0375a41a8c510487.tar.bz2
scummvm-rg350-cce8e2596019d462eb3e2f6e0375a41a8c510487.zip
Removed all job routines. Stubs have been left for future reference in the code for BRA.
svn-id: r30675
Diffstat (limited to 'engines/parallaction/walk.cpp')
-rw-r--r--engines/parallaction/walk.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/walk.cpp b/engines/parallaction/walk.cpp
index 3b5948fe92..4f8453c509 100644
--- a/engines/parallaction/walk.cpp
+++ b/engines/parallaction/walk.cpp
@@ -398,12 +398,12 @@ void Parallaction_ns::walk() {
if (it != list->end()) {
if ((*it)->_x == pos.x && (*it)->_y == pos.y) {
- debugC(1, kDebugWalk, "jobWalk reached node (%i, %i)", (*it)->_x, (*it)->_y);
+ debugC(1, kDebugWalk, "walk reached node (%i, %i)", (*it)->_x, (*it)->_y);
it = list->erase(it);
}
}
if (it == list->end()) {
- debugC(1, kDebugWalk, "jobWalk reached last node");
+ debugC(1, kDebugWalk, "walk reached last node");
// j->_finished = 1;
finalizeWalk(list);
return;
@@ -419,7 +419,7 @@ void Parallaction_ns::walk() {
Common::Point newpos(_char._ani._left, _char._ani._top);
if (newpos == _char._ani._oldPos) {
- debugC(1, kDebugWalk, "jobWalk was blocked by an unforeseen obstacle");
+ debugC(1, kDebugWalk, "walk was blocked by an unforeseen obstacle");
// j->_finished = 1;
finalizeWalk(list);
} else {