summaryrefslogtreecommitdiff
path: root/src/resources/map/mapheights.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/map/mapheights.h')
-rw-r--r--src/resources/map/mapheights.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resources/map/mapheights.h b/src/resources/map/mapheights.h
index 2c5cf845a..43721e817 100644
--- a/src/resources/map/mapheights.h
+++ b/src/resources/map/mapheights.h
@@ -39,8 +39,10 @@ class MapHeights final : public MemoryCounter
void setHeight(const int x, const int y, const uint8_t height);
uint8_t getHeight(const int x, const int y) const
- { return x < mWidth && y < mHeight ? mTiles[x + y * mWidth]
- : CAST_U8(0U); }
+ {
+ return x < mWidth &&
+ y < mHeight ? mTiles[x + y * mWidth] : CAST_U8(0U);
+ }
int calcMemoryLocal() const override final;