(svn r8705) -Codechange: Increased the number of airport blocks to 64. This involves changing the enum of airport blocks to a static const uint64 as SOME platforms do not support 64-bit enums

This commit is contained in:
celestar
2007-02-13 12:34:54 +00:00
parent 4d0f8bac27
commit 82c696688c
5 changed files with 8 additions and 9 deletions

View File

@@ -77,7 +77,7 @@ enum {
/* Movement Blocks on Airports */
// blocks (eg_airport_flags)
enum {
static const uint64
TERM1_block = 1 << 0,
TERM2_block = 1 << 1,
TERM3_block = 1 << 2,
@@ -119,8 +119,7 @@ enum {
OUT_WAY_block2 = 1 << 31,
// end of new blocks
NOTHING_block = 1 << 30
};
NOTHING_block = 1 << 30;
typedef struct AirportMovingData {
int16 x;