diff options
author | tron <tron@openttd.org> | 2006-08-10 14:44:32 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-08-10 14:44:32 +0000 |
commit | 5f943a4ba7a754dfd1136b232608b0a31e443ceb (patch) | |
tree | f0019d1ff7a97f3f447d9e52ade98bd94a777737 /table | |
parent | 4ccdb04cd3470b4823e1ca66ceb9dd4271a08641 (diff) | |
download | openttd-5f943a4ba7a754dfd1136b232608b0a31e443ceb.tar.xz |
(svn r5833) -Feature: Allow building of (certain) rails, roads and bridge ramps on steep sloped tiles
Diffstat (limited to 'table')
-rw-r--r-- | table/autorail.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/table/autorail.h b/table/autorail.h index 1968d90c6..b8af0a604 100644 --- a/table/autorail.h +++ b/table/autorail.h @@ -38,14 +38,14 @@ static const int _AutorailTilehSprite[][6] = { { 0, 1, 2, 3, 4, 5 }, // invalid (20) { 0, 1, 2, 3, 4, 5 }, // invalid (21) { 0, 1, 2, 3, 4, 5 }, // invalid (22) - { RED(6), RED(11), RED(17), RED(27), RED(39), RED(47) }, // tileh = 23 + { 6, 11, RED(17), RED(27), RED(39), RED(47) }, // tileh = 23 { 0, 1, 2, 3, 4, 5 }, // invalid (24) { 0, 1, 2, 3, 4, 5 }, // invalid (25) { 0, 1, 2, 3, 4, 5 }, // invalid (26) - { RED(7), RED(15), RED(24), RED(33), RED(36), RED(44) }, // tileh = 27 + { 7, 15, RED(24), RED(33), RED(36), RED(44) }, // tileh = 27 { 0, 1, 2, 3, 4, 5 }, // invalid (28) - { RED(3), RED(14), RED(18), RED(26), RED(41), RED(49) }, // tileh = 29 - { RED(4), RED(12), RED(21), RED(30), RED(37), RED(45) }, // tileh = 30 + { 3, 14, RED(18), RED(26), RED(41), RED(49) }, // tileh = 29 + { 4, 12, RED(21), RED(30), RED(37), RED(45) } // tileh = 30 }; #undef RED |