(svn r1338) -Fix: fix signed/unsigned warnings introduced when ditching the macros for map querying.

This commit is contained in:
darkvater
2005-01-03 14:07:49 +00:00
parent 181e9b6cf9
commit 920b9eab9d
4 changed files with 9 additions and 9 deletions

2
ttd.c
View File

@@ -1082,7 +1082,7 @@ void GameLoop()
ShowScreenshotResult(MakeScreenshot());
break;
case 2: // make large screenshot
ShowScreenshotResult(MakeWorldScreenshot(-MapMaxX() * 32, 0, MapMaxX() * 64, TILES_Y * 32, 0));
ShowScreenshotResult(MakeWorldScreenshot(-(int)MapMaxX() * 32, 0, MapMaxX() * 64, TILES_Y * 32, 0));
break;
}
}