(svn r8750) -Fix (r8747): PLANES defined in wingdi.h caused compilation error under Win32. Changed to AIRPLANES

This commit is contained in:
KUDr
2007-02-15 22:00:04 +00:00
parent a7c92492df
commit c680266b50
3 changed files with 6 additions and 6 deletions

View File

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