summaryrefslogtreecommitdiff
path: root/src/industry.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-05-17 11:17:53 +0000
committerrubidium <rubidium@openttd.org>2009-05-17 11:17:53 +0000
commite7dedf4e1b2569a3f595f045a61d3d4bc144f3de (patch)
tree4c24aeae74983bd800c3b0b295bf854bd3f3ea89 /src/industry.h
parent3322cc978fbee678fc9a7abf930e76c0b3ca23a8 (diff)
downloadopenttd-e7dedf4e1b2569a3f595f045a61d3d4bc144f3de.tar.xz
(svn r16332) -Codechange: replace some -1 + 1 with 'nothing' or <= .. - 1 with < .. - 1 (both caused due to wrapper functions)
Diffstat (limited to 'src/industry.h')
-rw-r--r--src/industry.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry.h b/src/industry.h
index a36fb5ca0..c0f632cf1 100644
--- a/src/industry.h
+++ b/src/industry.h
@@ -337,7 +337,7 @@ static inline Industry *GetRandomIndustry()
/* Make sure we have a valid industry */
while (!Industry::IsValidID(index)) {
index++;
- assert(index <= GetMaxIndustryIndex());
+ assert(index < Industry::GetPoolSize());
}
}