diff options
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map.cpp b/src/map.cpp index 73686d61..db1e9aa2 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -185,9 +185,9 @@ Map::Map(int width, int height, int tileWidth, int tileHeight): mWidth(width), mHeight(height), mTileWidth(tileWidth), mTileHeight(tileHeight), mMaxTileHeight(height), + mDebugFlags(MAP_NORMAL), mOnClosedList(1), mOnOpenList(2), - mLastScrollX(0.0f), mLastScrollY(0.0f), - mDebugFlags(MAP_NORMAL) + mLastScrollX(0.0f), mLastScrollY(0.0f) { const int size = mWidth * mHeight; |