summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-06-19 16:40:31 +0000
committerrubidium <rubidium@openttd.org>2010-06-19 16:40:31 +0000
commit3e35018f97a29007f865a589452872df1a909d90 (patch)
treec492773a4def4fbf693ad78fff8be109da4e145f /src/strings.cpp
parent99a11badaf80f6f3a7ddaec74ca7fad712b28957 (diff)
downloadopenttd-3e35018f97a29007f865a589452872df1a909d90.tar.xz
(svn r19997) -Codechange: Unify order of ship and plane icon in stationlist and stationsigns with the rest of the game (frosch)
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index b25014e5a..fbd1daf0f 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -1118,8 +1118,8 @@ static char *StationGetSpecialString(char *buff, int x, const char *last)
if ((x & FACIL_TRAIN) && (buff + Utf8CharLen(SCC_TRAIN) < last)) buff += Utf8Encode(buff, SCC_TRAIN);
if ((x & FACIL_TRUCK_STOP) && (buff + Utf8CharLen(SCC_LORRY) < last)) buff += Utf8Encode(buff, SCC_LORRY);
if ((x & FACIL_BUS_STOP) && (buff + Utf8CharLen(SCC_BUS) < last)) buff += Utf8Encode(buff, SCC_BUS);
- if ((x & FACIL_AIRPORT) && (buff + Utf8CharLen(SCC_PLANE) < last)) buff += Utf8Encode(buff, SCC_PLANE);
if ((x & FACIL_DOCK) && (buff + Utf8CharLen(SCC_SHIP) < last)) buff += Utf8Encode(buff, SCC_SHIP);
+ if ((x & FACIL_AIRPORT) && (buff + Utf8CharLen(SCC_PLANE) < last)) buff += Utf8Encode(buff, SCC_PLANE);
*buff = '\0';
return buff;
}