File diff r3999:11007d71fa74 → r4000:702cb45b8eab
landscape.c
Show inline comments
 
@@ -392,13 +392,13 @@ void InitializeLandscape(void)
 
	}
 
	for (x = 0; x < sizex; x++) MakeVoid(sizex * y + x);
 
}
 

	
 
void ConvertGroundTilesIntoWaterTiles(void)
 
{
 
	TileIndex tile = 0;
 
	TileIndex tile;
 

	
 
	for (tile = 0; tile < MapSize(); ++tile) {
 
		if (IsTileType(tile, MP_CLEAR) && GetTileMaxZ(tile) == 0) {
 
			MakeWater(tile);
 
		}
 
	}