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
commitd6bc63387059d71afb35615ea39afb85c38553a6 (patch)
tree7b6bbf23c2a5909320691b54d4e9633b3cc56d17 /src/strings.cpp
parent8d449825f9264bfb3f05a0a1d1d16e8d8d8a24f2 (diff)
downloadopenttd-d6bc63387059d71afb35615ea39afb85c38553a6.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;
}