summaryrefslogtreecommitdiff
path: root/src/airport.h
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-02-15 22:00:04 +0000
committerKUDr <kudr@openttd.org>2007-02-15 22:00:04 +0000
commit72cdfb635280dd0f63f78436e3c92d3d9d6416b6 (patch)
treeabebf6e0d7ba11e3c1614426287c4cc1741a26e1 /src/airport.h
parent6460d5b441884c76131df128872049a56b1f48b6 (diff)
downloadopenttd-72cdfb635280dd0f63f78436e3c92d3d9d6416b6.tar.xz
(svn r8750) -Fix (r8747): PLANES defined in wingdi.h caused compilation error under Win32. Changed to AIRPLANES
Diffstat (limited to 'src/airport.h')
-rw-r--r--src/airport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/airport.h b/src/airport.h
index dd5ebabce..83cb4eda3 100644
--- a/src/airport.h
+++ b/src/airport.h
@@ -122,9 +122,9 @@ struct AirportFTAbuildup;
typedef struct AirportFTAClass {
public:
enum Flags {
- PLANES = 0x1,
+ AIRPLANES = 0x1,
HELICOPTERS = 0x2,
- ALL = PLANES | HELICOPTERS,
+ ALL = AIRPLANES | HELICOPTERS,
SHORT_STRIP = 0x4
};