water_cmd.c
changeset 410 8de2aaf20800
parent 337 66647f97e7c0
child 473 0da86c59e3ae
--- a/water_cmd.c	Sun Nov 14 18:20:40 2004 +0000
+++ b/water_cmd.c	Sun Nov 14 19:44:06 2004 +0000
@@ -14,7 +14,7 @@
 	return IS_TILETYPE(tile, MP_WATER) &&	(_map5[tile]&~3) == 0x80;
 }
 
-bool IsClearWaterTile(uint tile)
+static bool IsClearWaterTile(uint tile)
 {
 	TileInfo ti;
 	FindLandscapeHeightByTile(&ti, tile);
@@ -440,12 +440,12 @@
 }
 
 
-uint GetSlopeZ_Water(TileInfo *ti)
+static uint GetSlopeZ_Water(TileInfo *ti)
 {
 	return GetPartialZ(ti->x&0xF, ti->y&0xF, ti->tileh) + ti->z;
 }
 
-uint GetSlopeTileh_Water(TileInfo *ti)
+static uint GetSlopeTileh_Water(TileInfo *ti)
 {
 	return ti->tileh;
 }