diff options
author | peter1138 <peter1138@openttd.org> | 2007-05-10 23:10:23 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2007-05-10 23:10:23 +0000 |
commit | c9018d3e7ca8265bf1cb3d4dcdf4737f3e65bd6f (patch) | |
tree | a30307b030b6015740856c49fa80fa650b404868 /src/table | |
parent | 3cc31aae86854f41216da507de667e61df73b295 (diff) | |
download | openttd-c9018d3e7ca8265bf1cb3d4dcdf4737f3e65bd6f.tar.xz |
(svn r9825) -Codechange: [NewGRF] Add support for early vehicle retirement.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/engines.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/table/engines.h b/src/table/engines.h index 94037d21e..9ce78c497 100644 --- a/src/table/engines.h +++ b/src/table/engines.h @@ -19,7 +19,7 @@ * @note the 0x80 in parameter b sets the "is carriage bit" * @note the 5 between d and e is the load amount */ -#define MK(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 5, e, 0, 8, 0, 0 } +#define MK(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 5, e, 0, 8, 0, 0, 0 } /** Writes the properties of a train carriage into the EngineInfo struct. * @param a Introduction date @@ -30,7 +30,7 @@ * @see MK * @note the 5 between d and e is the load amount */ -#define MW(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b | 0x80, 5, e, 0, 8, 0, 0 } +#define MW(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b | 0x80, 5, e, 0, 8, 0, 0, 0 } /** Writes the properties of a ship into the EngineInfo struct. * @param a Introduction date @@ -41,7 +41,7 @@ * @see MK * @note the 10 between d and e is the load amount */ -#define MS(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 10, e, 0, 8, 0, 0 } +#define MS(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 10, e, 0, 8, 0, 0, 0 } /** Writes the properties of an aeroplane into the EngineInfo struct. * @param a Introduction date @@ -52,7 +52,7 @@ * @see MK * @note the 20 between d and e is the load amount */ -#define MA(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 20, e, 0, 8, 0, 0 } +#define MA(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 20, e, 0, 8, 0, 0, 0 } // Climates // T = Temperate |