From cce8e2596019d462eb3e2f6e0375a41a8c510487 Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Mon, 28 Jan 2008 13:10:49 +0000 Subject: Removed all job routines. Stubs have been left for future reference in the code for BRA. svn-id: r30675 --- engines/parallaction/walk.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/parallaction/walk.cpp') 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 { -- cgit v1.2.3