diff options
Diffstat (limited to 'src/resources/map/map.h')
-rw-r--r-- | src/resources/map/map.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/resources/map/map.h b/src/resources/map/map.h index e8be23ca4..cf2d0c1e9 100644 --- a/src/resources/map/map.h +++ b/src/resources/map/map.h @@ -217,11 +217,11 @@ class Map final : public Properties, public ConfigListener void addAnimation(const int gid, TileAnimation *const animation) { mTileAnimations[gid] = animation; } - void setDebugFlags(const int n) - { mDebugFlags = n; } + void setDrawLayersFlags(const int n) + { mDrawLayersFlags = n; } - int getDebugFlags() const A_WARN_UNUSED - { return mDebugFlags; } + int getDrawLayersFlags() const A_WARN_UNUSED + { return mDrawLayersFlags; } void addExtraLayer(); @@ -380,7 +380,7 @@ class Map final : public Properties, public ConfigListener bool mHasWarps; // debug flags - int mDebugFlags; + int mDrawLayersFlags; // Pathfinding members unsigned int mOnClosedList; |