summaryrefslogtreecommitdiff
path: root/src/table/engines.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2008-06-05 12:08:20 +0000
committerpeter1138 <peter1138@openttd.org>2008-06-05 12:08:20 +0000
commit0a41936df8d296e8e7e7e4672a462ea1326f15d2 (patch)
tree21c4af38a92bd99fdbede2d74c78ed36bfbd5ca9 /src/table/engines.h
parent5990a92bcaf34eff860099b8ba53585dc4071e8c (diff)
downloadopenttd-0a41936df8d296e8e7e7e4672a462ea1326f15d2.tar.xz
(svn r13388) -Codechange: Remove "my invented flag for something that is a wagon"
Diffstat (limited to 'src/table/engines.h')
-rw-r--r--src/table/engines.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/table/engines.h b/src/table/engines.h
index 3ca03afba..3e8bc3057 100644
--- a/src/table/engines.h
+++ b/src/table/engines.h
@@ -18,7 +18,7 @@ enum {
/** Writes the properties of a train or road vehicle into the EngineInfo struct.
* @see EngineInfo
* @param a Introduction date
- * @param b unk2, flag for carriage(bit 7) and decay speed(bits0..6)
+ * @param b decay speed
* @param c life length
* @param d base life
* @param e Bitmask of the climates
@@ -29,18 +29,18 @@ enum {
/** Writes the properties of a train carriage into the EngineInfo struct.
* @param a Introduction date
- * @param b unk2, flag for carriage(bit 7) and decay speed(bits0..6)
+ * @param b decay speed
* @param c life length
* @param d base life
* @param e Bitmask of the climates
* @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, 0, STR_EMPTY }
+#define MW(a, b, c, d, e) { DAYS_TILL_ORIGINAL_BASE_YEAR + a, c, d, b, 5, e, 0, 8, 0, 0, 0, STR_EMPTY }
/** Writes the properties of a ship into the EngineInfo struct.
* @param a Introduction date
- * @param b unk2, flag for carriage(bit 7) and decay speed(bits0..6)
+ * @param b decay speed
* @param c life length
* @param d base life
* @param e Bitmask of the climates
@@ -51,7 +51,7 @@ enum {
/** Writes the properties of an aeroplane into the EngineInfo struct.
* @param a Introduction date
- * @param b unk2, flag for carriage(bit 7) and decay speed(bits0..6)
+ * @param b decay speed
* @param c life length
* @param d base life
* @param e Bitmask of the climates