(svn r16676) -Codechange: Rename AcceptedCargo to CargoArray and its instances to more meaningful names.

This commit is contained in:
frosch
2009-06-27 18:26:50 +00:00
parent e42deae3a9
commit 812ad41f23
14 changed files with 74 additions and 74 deletions

View File

@@ -55,7 +55,7 @@ enum CargoTypes {
CT_INVALID = 0xFF
};
/** Array for storing amounts of accepted cargo */
typedef uint AcceptedCargo[NUM_CARGO];
/** Array for storing amounts of cargo */
typedef uint CargoArray[NUM_CARGO];
#endif /* CARGO_TYPE_H */