(svn r1631) A couple of fixes for the signed/unsigned warnings. Only train_cmd.c remains to need fixing...

This commit is contained in:
dominik
2005-01-23 23:58:35 +00:00
parent 6912223444
commit 29e0ded977
4 changed files with 4 additions and 4 deletions

View File

@@ -595,7 +595,7 @@ void TileLoopClearHelper(uint tile)
}
}
if (dirty != -1)
if (dirty != (uint) -1)
MarkTileDirtyByTile(dirty);
}