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
commitc680266b50abea3c4ed03e83c6e64650715f9155 (patch)
treeabebf6e0d7ba11e3c1614426287c4cc1741a26e1 /src/airport.h
parenta7c92492df16f1a99d05e696b14d3300ff4663f3 (diff)
downloadopenttd-c680266b50abea3c4ed03e83c6e64650715f9155.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
};