From 4780ae6e3da0ca80f71d9b471f26f975aaed430c Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Sun, 28 Jan 2018 15:37:35 +0100 Subject: [PATCH] Import RCT1 parks with an interest rate of 1% --- src/openrct2/rct1/S4Importer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/openrct2/rct1/S4Importer.cpp b/src/openrct2/rct1/S4Importer.cpp index e4dc438092..3579f1153e 100644 --- a/src/openrct2/rct1/S4Importer.cpp +++ b/src/openrct2/rct1/S4Importer.cpp @@ -1763,6 +1763,8 @@ private: gCash = _s4.cash; gBankLoan = _s4.loan; gMaxBankLoan = _s4.max_loan; + // It's more like 1.33%, but we can only use integers. Can be fixed once we have our own save format. + gBankLoanInterestRate = 1; gInitialCash = _s4.cash; gCompanyValue = _s4.company_value;