summaryrefslogtreecommitdiff
path: root/src/landscape.h
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-05-21 22:43:25 +0000
committersmatz <smatz@openttd.org>2009-05-21 22:43:25 +0000
commit6afce484bb9643510fbe51bd2127ed37961099a4 (patch)
treed3c5bfec1b9efe3edeb171b5db8554f742219a08 /src/landscape.h
parentc497e9e7edb2a891544450280e326c31a964d1a9 (diff)
downloadopenttd-6afce484bb9643510fbe51bd2127ed37961099a4.tar.xz
(svn r16373) -Codechange: use () instead of (void) for functions without parameters
Diffstat (limited to 'src/landscape.h')
-rw-r--r--src/landscape.h10
1 files changed, 5 insertions, 5 deletions
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);