summaryrefslogtreecommitdiff
path: root/industry_cmd.c
diff options
context:
space:
mode:
authormatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
committermatthijs <matthijs@openttd.org>2006-12-05 13:58:20 +0000
commit9218fc16e6fff350e6209b6b90b8597fc431f00f (patch)
treee23ebc401e3e8f7037ad38701e00a6bf1fb61136 /industry_cmd.c
parent681f994d16a71813144352b3a6ef05a22cb8b3ff (diff)
downloadopenttd-9218fc16e6fff350e6209b6b90b8597fc431f00f.tar.xz
(svn r7372) - CodeChange: Rename all GetXXXArraySize() functions to GetNumXXX() and add GetMaxXXXIndex() functions. This prepares for the new pool interface.
Diffstat (limited to 'industry_cmd.c')
-rw-r--r--industry_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/industry_cmd.c b/industry_cmd.c
index 4516de189..ec4693304 100644
--- a/industry_cmd.c
+++ b/industry_cmd.c
@@ -1820,7 +1820,7 @@ void IndustryMonthlyLoop(void)
/* 3% chance that we start a new industry */
if (CHANCE16(3, 100)) {
MaybeNewIndustry(Random());
- } else if (!_patches.smooth_economy && GetIndustryArraySize() > 0) {
+ } else if (!_patches.smooth_economy) {
i = GetRandomIndustry();
if (i != NULL) ChangeIndustryProduction(i);
}