(svn r1346) -Fix: fix signed/unsigned warnings

-Fix: latent removal of 2 lines from ttd.c which I forgot because the file was not saved :O
This commit is contained in:
darkvater
2005-01-03 19:09:45 +00:00
parent afb6e5441d
commit 79d29b7633
3 changed files with 6 additions and 8 deletions

2
ttd.c
View File

@@ -1240,8 +1240,6 @@ bool AfterLoadGame(uint version)
BEGIN_TILE_LOOP(tile_cur, w, h, tile)
if (IS_TILETYPE(tile_cur, MP_WATER) && _map_owner[tile_cur] >= MAX_PLAYERS)
_map_owner[tile_cur] = OWNER_WATER;
if (!IS_TILETYPE(tile_cur, MP_WATER) && _map_owner[tile_cur] == OWNER_WATER)
_map_owner[tile_cur] = OWNER_NONE;
END_TILE_LOOP(tile_cur, w, h, tile)
}