summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-shoals.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dgn-shoals.cc')
-rw-r--r--crawl-ref/source/dgn-shoals.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/dgn-shoals.cc b/crawl-ref/source/dgn-shoals.cc
index d51e20ed27..592d77f154 100644
--- a/crawl-ref/source/dgn-shoals.cc
+++ b/crawl-ref/source/dgn-shoals.cc
@@ -108,7 +108,7 @@ static int _shoals_feature_height(dungeon_feature_type feat)
case DNGN_DEEP_WATER:
return SHT_SHALLOW_WATER - 1;
default:
- return feat_is_solid(feat)? SHT_ROCK : SHT_FLOOR;
+ return feat_is_solid(feat) ? SHT_ROCK : SHT_FLOOR;
}
}
@@ -1008,7 +1008,7 @@ static tide_direction _shoals_feature_tide_height_change(
_shoals_feature_height(newfeat) - _shoals_feature_height(oldfeat);
// If the apparent height of the new feature is greater (floor vs water),
// the tide is receding.
- return height_delta < 0? TIDE_RISING : TIDE_FALLING;
+ return height_delta < 0 ? TIDE_RISING : TIDE_FALLING;
}
static void _shoals_apply_tide_at(coord_def c, int tide, bool incremental_tide)