summaryrefslogtreecommitdiff
path: root/src/strings.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-08-02 23:21:52 +0000
committerrubidium <rubidium@openttd.org>2007-08-02 23:21:52 +0000
commite4149482ec1c1d5424327983df2ebf2419ffe273 (patch)
tree492ddfe6412cdabdaaaa435390d2417c774cf096 /src/strings.cpp
parent549450d31a4676039e2663e66e23e2f5bae3f7f1 (diff)
downloadopenttd-e4149482ec1c1d5424327983df2ebf2419ffe273.tar.xz
(svn r10759) -Codechange: make the industry struct use the pool item class as super class.
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 bcd44db09..c10855a0c 100644
--- a/src/strings.cpp
+++ b/src/strings.cpp
@@ -656,7 +656,7 @@ static char* FormatString(char* buff, const char* str, const int64* argv, uint c
int64 args[2];
/* industry not valid anymore? */
- if (!IsValidIndustry(i)) break;
+ if (!i->IsValid()) break;
/* First print the town name and the industry type name
* The string STR_INDUSTRY_PATTERN controls the formatting */