From f81dd357e8178d9f58f81dec64df5625189e9192 Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 14 Mar 2011 21:14:44 +0000 Subject: (svn r22253) -Change: Apply the same inflation to the initial loan as to the maximum loan. Note that this is no change to the economy; it only saves players some clicks when starting companies in later years. (Eddi) --- src/company_cmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index b5764d732..c4f661170 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -542,7 +542,7 @@ Company *DoStartupNewCompany(bool is_ai, CompanyID company = INVALID_COMPANY) ResetCompanyLivery(c); _company_colours[c->index] = (Colours)c->colour; - c->money = c->current_loan = 100000; + c->money = c->current_loan = (100000ll * _economy.inflation_prices >> 16) / 50000 * 50000; c->share_owners[0] = c->share_owners[1] = c->share_owners[2] = c->share_owners[3] = INVALID_OWNER; -- cgit v1.2.3-54-g00ecf