summaryrefslogtreecommitdiff
path: root/src/resources/map/mapheights.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/map/mapheights.cpp')
-rw-r--r--src/resources/map/mapheights.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/map/mapheights.cpp b/src/resources/map/mapheights.cpp
index b4347cd1f..5d5c30aa8 100644
--- a/src/resources/map/mapheights.cpp
+++ b/src/resources/map/mapheights.cpp
@@ -39,3 +39,9 @@ void MapHeights::setHeight(const int x, const int y, const uint8_t height)
{
mTiles[x + y * mWidth] = height;
}
+
+int MapHeights::calcMemoryLocal() const
+{
+ return sizeof(MapHeights) +
+ mWidth * mHeight;
+}