(svn r16373) -Codechange: use () instead of (void) for functions without parameters

This commit is contained in:
smatz
2009-05-21 22:43:25 +00:00
parent eded5a612c
commit 85043a1fb7
8 changed files with 17 additions and 17 deletions

View File

@@ -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);