diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-02-02 05:11:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-02-02 05:11:50 +0300 |
commit | f498d80c587033bffb9abedb2b0827ad8d4a2a32 (patch) | |
tree | 82da8928768b2159c199c2d033388a071f228582 /src/map.h | |
parent | 1ba44aeb62414ea349e462b6d4fccbaac00be115 (diff) | |
download | plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.gz plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.bz2 plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.tar.xz plus-f498d80c587033bffb9abedb2b0827ad8d4a2a32.zip |
Add some checks after automatic checking.
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -152,7 +152,8 @@ class MapLayer: public ConfigListener /** * Set tile image with x + y * width already known. */ - void setTile(int index, Image *img) { mTiles[index] = img; } + void setTile(int index, Image *img) + { mTiles[index] = img; } /** * Draws this layer to the given graphics context. The coordinates are |