From 6afce484bb9643510fbe51bd2127ed37961099a4 Mon Sep 17 00:00:00 2001 From: smatz Date: Thu, 21 May 2009 22:43:25 +0000 Subject: (svn r16373) -Codechange: use () instead of (void) for functions without parameters --- src/landscape.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/landscape.h') diff --git a/src/landscape.h b/src/landscape.h index 4eae6394e..26355e423 100644 --- a/src/landscape.h +++ b/src/landscape.h @@ -23,12 +23,12 @@ struct SnowLine { byte lowest_value; ///< Lowest snow line of the year }; -bool IsSnowLineSet(void); +bool IsSnowLineSet(); void SetSnowLine(byte table[SNOW_LINE_MONTHS][SNOW_LINE_DAYS]); -byte GetSnowLine(void); -byte HighestSnowLine(void); -byte LowestSnowLine(void); -void ClearSnowLine(void); +byte GetSnowLine(); +byte HighestSnowLine(); +byte LowestSnowLine(); +void ClearSnowLine(); uint GetPartialZ(int x, int y, Slope corners); uint GetSlopeZ(int x, int y); -- cgit v1.2.3-54-g00ecf