summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-14 01:29:18 +0000
committerrubidium <rubidium@openttd.org>2009-02-14 01:29:18 +0000
commit53caa6cb2145bf39861d53e3148a0abf39bb0e12 (patch)
treeeffb9ca9b29119d60ca4fcfb421eac8ef6b50d41 /src/strings.cpp
parent9554b8aafeb391ad7fb87219e29809fd56c03fd8 (diff)
downloadopenttd-53caa6cb2145bf39861d53e3148a0abf39bb0e12.tar.xz
(svn r15474) -Cleanup: remove some (long) unused strings.
Diffstat (limited to 'src/strings.cpp')
-rw-r--r--src/strings.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/strings.cpp b/src/strings.cpp
index 9fdcbfc4c..95342d2fb 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -700,8 +700,7 @@ static char *FormatString(char *buff, const char *str, const int64 *argv, uint c
/* industry not valid anymore? */
if (!i->IsValid()) break;
- /* First print the town name and the industry type name
- * The string STR_INDUSTRY_PATTERN controls the formatting */
+ /* First print the town name and the industry type name. */
args[0] = i->town->index;
args[1] = GetIndustrySpec(i->type)->name;
buff = FormatString(buff, GetStringPtr(STR_INDUSTRY_FORMAT), args, modifier >> 24, last);