summaryrefslogtreecommitdiff
path: root/src/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.cpp')
-rw-r--r--src/map.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/map.cpp b/src/map.cpp
index db1e9aa2..df03873f 100644
--- a/src/map.cpp
+++ b/src/map.cpp
@@ -230,7 +230,8 @@ void Map::initializeAmbientLayers()
{
name = "overlay" + toString(i);
}
- else {
+ else
+ {
break; // the FOR loop
}
@@ -712,12 +713,14 @@ Path Map::findPath(int startX, int startY, int destX, int destY,
newTile->Gcost = Gcost;
newTile->Fcost = Gcost + newTile->Hcost;
- if (x != destX || y != destY) {
+ if (x != destX || y != destY)
+ {
// Add this tile to the open list
newTile->whichList = mOnOpenList;
openList.push(Location(x, y, newTile));
}
- else {
+ else
+ {
// Target location was found
foundPath = true;
}