diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-07-18 02:44:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-07-18 02:44:03 +0300 |
commit | e28e0566b6141df26fc1632f5ff67da47d4cd350 (patch) | |
tree | 5cd4a10796bb0c8ee8f319a55cf253b471374b9e /src/map.cpp | |
parent | f0e95132f27ceb901fbd779fafc798a1f67a06a6 (diff) | |
download | plus-e28e0566b6141df26fc1632f5ff67da47d4cd350.tar.gz plus-e28e0566b6141df26fc1632f5ff67da47d4cd350.tar.bz2 plus-e28e0566b6141df26fc1632f5ff67da47d4cd350.tar.xz plus-e28e0566b6141df26fc1632f5ff67da47d4cd350.zip |
last warning fixes.
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 1b25bee02..574b70e41 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -1377,7 +1377,7 @@ void Map::indexTilesets() if (s) { const int start = s->getFirstGid(); - const int end = stati_cast<int>(start + s->size()); + const int end = static_cast<int>(start + s->size()); for (int f = start; f < end; f ++) { if (f < size) |