diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-15 22:00:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-15 22:18:35 +0300 |
commit | 7e35fd53d5fdc658facfce281577421296f8e3c1 (patch) | |
tree | b1ebf61c376b0e1d92446a9fd6addc2c99cf415a /src/resources/map/map.h | |
parent | 60580edaea11f6a39ef8786e6576110b81fa106c (diff) | |
download | plus-7e35fd53d5fdc658facfce281577421296f8e3c1.tar.gz plus-7e35fd53d5fdc658facfce281577421296f8e3c1.tar.bz2 plus-7e35fd53d5fdc658facfce281577421296f8e3c1.tar.xz plus-7e35fd53d5fdc658facfce281577421296f8e3c1.zip |
Simplify setWall function in map.
Diffstat (limited to 'src/resources/map/map.h')
-rw-r--r-- | src/resources/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/resources/map/map.h b/src/resources/map/map.h index 80f74e0ae..c1b84ae83 100644 --- a/src/resources/map/map.h +++ b/src/resources/map/map.h @@ -156,7 +156,7 @@ class Map final : public Properties, public ConfigListener const unsigned char blockWalkMask = BlockMask::WALL | BlockMask::AIR | BlockMask::WATER) const A_WARN_UNUSED; - void setWalk(const int x, const int y, const bool walkable); + void setWalk(const int x, const int y); unsigned char getBlockMask(const int x, const int y) const; |