1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-18 04:23:20 +01:00

Move gBankLoan and gBankLoanInterestRate to GameState_t

This commit is contained in:
Martin Mizzi
2024-02-18 22:58:17 -05:00
parent 7f59e20926
commit f5a9846ea2
18 changed files with 301 additions and 69 deletions

View File

@@ -577,7 +577,7 @@ static int32_t ConsoleCommandGet(InteractiveConsole& console, const arguments_t&
}
else if (argv[0] == "current_loan")
{
console.WriteFormatLine("current_loan %d", gBankLoan / 10);
console.WriteFormatLine("current_loan %d", gameState.BankLoan / 10);
}
else if (argv[0] == "max_loan")
{