diff options
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) |