Merge pull request #1951 from zsilencer/develop

fix #1944
This commit is contained in:
Ted John 2015-09-21 18:10:02 +01:00
commit a0d5d592c2
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ int map_element_height(int x, int y)
rct_map_element *mapElement;
// Off the map
if (x >= 8192 || y >= 8192)
if ((unsigned)x >= 8192 || (unsigned)y >= 8192)
return 16;
// Truncate subtile coordinates