mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
fixed broken pathfinding
svn-id: r46910
This commit is contained in:
parent
58f4794221
commit
1131c48f26
@ -56,6 +56,7 @@ bool Scene::findPath(Scene::Path &p, const Common::Point &src, const Common::Poi
|
||||
|
||||
debug(1, "findPath %d,%d -> %d,%d", src.x, src.y, dst.x, dst.y);
|
||||
p.clear();
|
||||
p.push_back(src);
|
||||
p.push_back(dst);
|
||||
|
||||
Common::List<uint> boxes;
|
||||
@ -132,7 +133,7 @@ bool Scene::findPath(Scene::Path &p, const Common::Point &src, const Common::Poi
|
||||
if (wi == boxes.end())
|
||||
++i;
|
||||
}
|
||||
|
||||
p.pop_front();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user