From 189ca7370762dca088a13d08ccb035e364758abb Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 22 Jan 2005 20:23:18 +0000 Subject: (svn r1594) Convert all undefined parameter lists to (void) and add the appropriate warning flags in the Makefile --- clear_cmd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'clear_cmd.c') diff --git a/clear_cmd.c b/clear_cmd.c index 110750041..6c0c9829d 100644 --- a/clear_cmd.c +++ b/clear_cmd.c @@ -729,7 +729,7 @@ static void TileLoop_Clear(uint tile) MarkTileDirtyByTile(tile); } -void GenerateClearTile() +void GenerateClearTile(void) { int i,j; uint tile,tile_new; @@ -801,7 +801,8 @@ static void ChangeTileOwner_Clear(uint tile, byte old_player, byte new_player) return; } -void InitializeClearLand() { +void InitializeClearLand(void) +{ _opt.snow_line = _patches.snow_line_height * 8; } -- cgit v1.2.3-54-g00ecf