summaryrefslogtreecommitdiff
path: root/src/cargo_type.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2009-06-27 18:26:50 +0000
committerfrosch <frosch@openttd.org>2009-06-27 18:26:50 +0000
commit812ad41f23b7ed52a161ed15b15a2af3a7edb41f (patch)
tree6758cbd7b2a75e135b4e360285445f1807d3b378 /src/cargo_type.h
parente42deae3a98ead62bf2ab8e76f8e571a2baa951c (diff)
downloadopenttd-812ad41f23b7ed52a161ed15b15a2af3a7edb41f.tar.xz
(svn r16676) -Codechange: Rename AcceptedCargo to CargoArray and its instances to more meaningful names.
Diffstat (limited to 'src/cargo_type.h')
-rw-r--r--src/cargo_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cargo_type.h b/src/cargo_type.h
index 57365857d..94bc9dbb6 100644
--- a/src/cargo_type.h
+++ b/src/cargo_type.h
@@ -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 */