(svn r4128) - CodeChange: Add proper semantics for CargoID for such variables instead of using the general byte-type.

This commit is contained in:
Darkvater
2006-03-26 22:23:32 +00:00
parent 76f1609ee1
commit d5909f901a
14 changed files with 39 additions and 38 deletions

View File

@@ -26,7 +26,7 @@ typedef struct AiBuildRec {
byte buildcmd_a;
byte buildcmd_b;
byte direction;
byte cargo;
CargoID cargo;
} AiBuildRec;
typedef struct PlayerAI {
@@ -39,7 +39,7 @@ typedef struct PlayerAI {
byte banned_tile_count;
byte railtype_to_use;
byte cargo_type;
CargoID cargo_type;
byte num_wagons;
byte build_kind;
byte num_build_rec;
@@ -111,7 +111,7 @@ typedef struct PlayerAiNew {
// Route stuff
byte cargo;
CargoID cargo;
byte tbt; // train/bus/truck 0/1/2 AI_TRAIN/AI_BUS/AI_TRUCK
int new_cost;