summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-01-05 19:00:05 +0100
committerGitHub <noreply@github.com>2021-01-05 19:00:05 +0100
commitf2fa2a14d730f0f8603d043f0271728d4d827c37 (patch)
treed8d3b11bc05c0ab067f152ec1a86283af1092c26 /src
parentbb28ff7226938f0882b67e2cffa0126ae26a5b5d (diff)
downloadopenttd-f2fa2a14d730f0f8603d043f0271728d4d827c37.tar.xz
Fix: allow input of numbers greater than INT32_MAX for GiveMoney (#8499)
Based on patch by JGR.
Diffstat (limited to 'src')
-rw-r--r--src/main_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main_gui.cpp b/src/main_gui.cpp
index 5877fb938..f99cceaf1 100644
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -73,7 +73,7 @@ void HandleOnEditText(const char *str)
case 3: { // Give money, you can only give money in excess of loan
const Company *c = Company::GetIfValid(_local_company);
if (c == nullptr) break;
- Money money = min(c->money - c->current_loan, (Money)(atoi(str) / _currency->rate));
+ Money money = min(c->money - c->current_loan, (Money)(strtoull(str, nullptr, 10) / _currency->rate));
uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0