summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-09-12 17:16:04 +0000
committerrubidium <rubidium@openttd.org>2008-09-12 17:16:04 +0000
commit9862a2e79a3874a47e75ef202d15347cc0ccfd40 (patch)
tree7b6bbf23c2a5909320691b54d4e9633b3cc56d17 /src/strings.cpp
parent7f461f0bba5b2d0476a87701e3edc9612a2f9809 (diff)
downloadopenttd-9862a2e79a3874a47e75ef202d15347cc0ccfd40.tar.xz
(svn r14298) -Fix [FS#2214]: "{CARGO} from unknown destination".
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 f12b4beee..d8522be25 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -844,7 +844,7 @@ static char* FormatString(char* buff, const char* str, const int64* argv, uint c
/* The station doesn't exist anymore. The only place where we might
* be "drawing" an invalid station is in the case of cargo that is
* in transit. */
- buff = GetStringWithArgs(buff, STR_UNKNOWN_DESTINATION, NULL, last);
+ buff = GetStringWithArgs(buff, STR_UNKNOWN_STATION, NULL, last);
break;
}