diff options
author | frosch <frosch@openttd.org> | 2013-12-13 20:52:25 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2013-12-13 20:52:25 +0000 |
commit | a12fa22a7597983af6823ece4512ee0bd5fcc55b (patch) | |
tree | 56c8eb42c2dff75774c5bcb7027af5bb3553ab70 /src/table | |
parent | e0d69933f607b7ec20dfe69a2a699c4db6c2ccd1 (diff) | |
download | openttd-a12fa22a7597983af6823ece4512ee0bd5fcc55b.tar.xz |
(svn r26158) -Fix: NewGRF inspect window lacked several newer variables.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/newgrf_debug_data.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/table/newgrf_debug_data.h b/src/table/newgrf_debug_data.h index 2f02b1404..aa11ebbb4 100644 --- a/src/table/newgrf_debug_data.h +++ b/src/table/newgrf_debug_data.h @@ -59,7 +59,12 @@ static const NIVariable _niv_vehicles[] = { NIV(0x48, "vehicle type info"), NIV(0x49, "year of construction"), NIV(0x4A, "current rail type info"), + NIV(0x4B, "long date of last service"), + NIV(0x4C, "current max speed"), + NIV(0x4A, "position in articulated vehicle"), NIV(0x60, "count vehicle id occurrences"), + // 0x61 not useful, since it requires register 0x10F + NIV(0x62, "Curvature/position difference to other vehicle"), NIV_END() }; @@ -407,6 +412,8 @@ static const NIVariable _niv_railtypes[] = { NIV(0x40, "terrain type"), NIV(0x41, "enhanced tunnels"), NIV(0x42, "level crossing status"), + NIV(0x43, "construction date"), + NIV(0x44, "town zone"), NIV_END() }; |