(svn r7451) -Fix (7372): GetNum(Towns|Industries) should return the actual number of towns and industries.
-Fix (6055): GetMax(Town|Industry)Index should not return the number of towns or industries - 1, but the size of the pool - 1.
This commit is contained in:
@@ -99,7 +99,7 @@ static inline IndustryID GetMaxIndustryIndex(void)
|
||||
* _really_ returns the highest index. Now it just returns
|
||||
* the next safe value we are sure about everything is below.
|
||||
*/
|
||||
return _total_industries - 1;
|
||||
return GetIndustryPoolSize() - 1;
|
||||
}
|
||||
|
||||
static inline uint GetNumIndustries(void)
|
||||
|
||||
Reference in New Issue
Block a user