diff options
author | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-04-15 23:55:14 +0200 |
---|---|---|
committer | Yohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer> | 2011-04-16 00:18:39 +0200 |
commit | 0056412ed33b941d72a175dcd3f025abcd8fc02b (patch) | |
tree | 4be4363c0b248a3b2d32ef1d5c43941c94f5e93b /src/map.cpp | |
parent | 6f247d1fa09ce55cd96bb0fd75315fdd4e385c50 (diff) | |
download | mana-0056412ed33b941d72a175dcd3f025abcd8fc02b.tar.gz mana-0056412ed33b941d72a175dcd3f025abcd8fc02b.tar.bz2 mana-0056412ed33b941d72a175dcd3f025abcd8fc02b.tar.xz mana-0056412ed33b941d72a175dcd3f025abcd8fc02b.zip |
Post-review fixes.
- Removed unnecessary comments
- Removed a useless contains() check in getTileCenter()
- Fix the above function documentation
- Don't permit FloorItem to be created without a map object.
Reviewed-by: Thorbjorn Lindeijer.
Diffstat (limited to 'src/map.cpp')
-rw-r--r-- | src/map.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/map.cpp b/src/map.cpp index 949b00bd..b660653d 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -611,9 +611,6 @@ Vector Map::getTileCenter(int x, int y) { Vector tileCenterPos; - if (!contains(x, y)) - return tileCenterPos; - tileCenterPos.x = x * mTileWidth + mTileWidth / 2; tileCenterPos.y = y * mTileHeight + mTileHeight / 2; return tileCenterPos; |