From b3d2429b04a9afdf8af6af91e251b6bee96404e7 Mon Sep 17 00:00:00 2001 From: Nicola Mettifogo Date: Tue, 24 Feb 2009 15:21:53 +0000 Subject: Fixed shadowed name. svn-id: r38841 --- engines/parallaction/walk.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engines/parallaction/walk.cpp b/engines/parallaction/walk.cpp index a4f07f9bfc..fccc9def4f 100644 --- a/engines/parallaction/walk.cpp +++ b/engines/parallaction/walk.cpp @@ -644,9 +644,9 @@ void PathWalker_BR::doWalk(State &s) { } if (s._fieldC || !s._walkPath.empty()) { - Common::Point p; - s._a->getFoot(p); - checkTrap(p); + Common::Point p2; + s._a->getFoot(p2); + checkTrap(p2); debugC(3, kDebugWalk, "PathWalker_BR::doWalk, case 1"); return; } -- cgit v1.2.3