From 400f07fdb834dc99aa8a2a4695e20b36e5d23dc4 Mon Sep 17 00:00:00 2001 From: tron Date: Fri, 28 Jan 2005 15:31:04 +0000 Subject: (svn r1706) Implement ScaleByMapSize() and ScaleByMapSize1D() These scale a number relative to the map size/circumference. Use them to scale the amount of map objects. Of course at the moment they return just the input, because there are no bigger/smaller maps yet. --- industry_cmd.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'industry_cmd.c') diff --git a/industry_cmd.c b/industry_cmd.c index b22ab058e..9849e1321 100644 --- a/industry_cmd.c +++ b/industry_cmd.c @@ -1594,7 +1594,8 @@ static const byte _numof_industry_table[4][12] = { static void PlaceInitialIndustry(byte type, int amount) { - int num = _numof_industry_table[_opt.diff.number_industries][amount]; + int num = + ScaleByMapSize(_numof_industry_table[_opt.diff.number_industries][amount]); if (_opt.diff.number_industries != 0) { -- cgit v1.2.3-54-g00ecf