diff options
author | rubidium <rubidium@openttd.org> | 2007-03-09 10:12:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-03-09 10:12:08 +0000 |
commit | d609dff2bab3e7aca3f882d985e0796c18c04741 (patch) | |
tree | 8e4a6c1b624dfa1c9b5a331cff1b827bbf19441f | |
parent | 8eb0a220e6c478661fb0aaba2bfb5bbfd1d3e6f4 (diff) | |
download | openttd-d609dff2bab3e7aca3f882d985e0796c18c04741.tar.xz |
(svn r9076) -Fix [FS#529]: the intercontinental airport used 'T-junction' runway sprites when there is no exit in the middle of the runway as in the city airport (skidd13).
-rw-r--r-- | src/station_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index 35e362b11..dae12547a 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -1401,7 +1401,7 @@ static const byte _airport_sections_international[] = { // Intercontinental Airport (vlarge) - 4 runways static const byte _airport_sections_intercontinental[] = { 102, 120, 89, 89, 89, 89, 89, 89, 118, - 120, 22, 22, 22, 22, 22, 22, 119, 117, + 120, 23, 23, 23, 23, 23, 23, 119, 117, 87, 54, 87, 8, 8, 8, 8, 51, 117, 87, 162, 87, 85, 116, 116, 8, 9, 10, 87, 8, 8, 11, 31, 11, 8, 160, 32, @@ -1410,7 +1410,7 @@ static const byte _airport_sections_intercontinental[] = { 87, 142, 8, 11, 29, 11, 10, 163, 10, 87, 164, 87, 8, 8, 8, 10, 37, 117, 87, 120, 89, 89, 89, 89, 89, 89, 119, - 121, 22, 22, 22, 22, 22, 22, 119, 37 + 121, 23, 23, 23, 23, 23, 23, 119, 37 }; |