From 79d29b7633da52647b7ad4a36fb016ee0cf13801 Mon Sep 17 00:00:00 2001 From: darkvater Date: Mon, 3 Jan 2005 19:09:45 +0000 Subject: (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 --- ttd.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'ttd.c') diff --git a/ttd.c b/ttd.c index f07afce41..8d3955a90 100644 --- a/ttd.c +++ b/ttd.c @@ -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) } -- cgit v1.2.3-54-g00ecf