diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-06 19:23:17 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-06 19:23:17 +0300 |
commit | cc7367cd619a9e05931016c451f6925ccfb56356 (patch) | |
tree | 3cc73b06589efaad1ac7108a557f160749eb282d /src/resources/map/mapheights.cpp | |
parent | 1f9f3f097b7acecda205fbc5a3f4846b84c00ab5 (diff) | |
download | plus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.gz plus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.bz2 plus-cc7367cd619a9e05931016c451f6925ccfb56356.tar.xz plus-cc7367cd619a9e05931016c451f6925ccfb56356.zip |
Add missing base classes into constructors initialization lists.
Diffstat (limited to 'src/resources/map/mapheights.cpp')
-rw-r--r-- | src/resources/map/mapheights.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/map/mapheights.cpp b/src/resources/map/mapheights.cpp index b785df72c..67f3b34ec 100644 --- a/src/resources/map/mapheights.cpp +++ b/src/resources/map/mapheights.cpp @@ -22,7 +22,9 @@ #include "debug.h" -MapHeights::MapHeights(const int width, const int height) : +MapHeights::MapHeights(const int width, + const int height) : + MemoryCounter(), mWidth(width), mHeight(height), mTiles(new uint8_t[mWidth * mHeight]) |