diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-06-28 02:39:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-06-28 02:39:27 +0300 |
commit | 6207ffb9a38c7e3718b7c4d87500ea9360d4d44f (patch) | |
tree | 8b87f43bb62ef9254cfd5e3ef2f344b1680fb760 /src/map.cpp | |
parent | 574181b2e5dfff30a2d4f766492226ab7b5a5a17 (diff) | |
download | plus-6207ffb9a38c7e3718b7c4d87500ea9360d4d44f.tar.gz plus-6207ffb9a38c7e3718b7c4d87500ea9360d4d44f.tar.bz2 plus-6207ffb9a38c7e3718b7c4d87500ea9360d4d44f.tar.xz plus-6207ffb9a38c7e3718b7c4d87500ea9360d4d44f.zip |
Fix compilation warnings.
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map.cpp b/src/map.cpp index f252308b6..9f4805239 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -660,7 +660,7 @@ bool Map::getWalk(int x, int y, unsigned char walkmask) const return !(mMetaTiles[x + y * mWidth].blockmask & walkmask); } -void Map::setWalk(int x, int y, bool walkable) +void Map::setWalk(int x, int y, bool walkable A_UNUSED) { blockTile(x, y, Map::BLOCKTYPE_GROUNDTOP); } |