(svn r1770) -Fix: Hopefully last pieces of code that are containing a station-id

(and should be an uint16, not uint8)
This commit is contained in:
truelight
2005-02-02 16:16:43 +00:00
parent c51ed8465d
commit 0668a6b485
12 changed files with 38 additions and 28 deletions

View File

@@ -9,7 +9,7 @@ typedef struct GoodsEntry {
uint16 waiting_acceptance;
byte days_since_pickup;
byte rating;
byte enroute_from;
uint16 enroute_from;
byte enroute_time;
byte last_speed;
byte last_age;
@@ -20,10 +20,13 @@ typedef enum RoadStopType {
RS_TRUCK
} RoadStopType;
enum { NUM_ROAD_STOPS = 250 };
enum { ROAD_STOP_LIMIT = 8 };
enum { NUM_SLOTS = 2 };
enum { INVALID_SLOT = 0xFFFF };
enum {
INVALID_STATION = 0xFFFF,
INVALID_SLOT = 0xFFFF,
NUM_SLOTS = 2,
ROAD_STOP_LIMIT = 8,
NUM_ROAD_STOPS = 250,
};
typedef struct RoadStop {
TileIndex xy;