(svn r1451) Fix some of the signed/unsigned comparison warnings

This commit is contained in:
tron
2005-01-09 21:25:44 +00:00
parent d2e02df881
commit 4450ff105c
20 changed files with 39 additions and 33 deletions

View File

@@ -486,7 +486,7 @@ void RunTileLoop()
void InitializeLandscape()
{
uint map_size = MapSize();
int i;
uint i;
memset(_map_owner, OWNER_NONE, map_size);
memset(_map2, 0, map_size * sizeof(uint16));