mirror of https://github.com/OpenTTD/OpenTTD
(svn r17953) -Fix: when you start giving money (input window for amount), then get moved to spectators and you click 'Ok' a crash would occur
parent
27218dff08
commit
e1f0d0476e
|
@ -66,7 +66,8 @@ void HandleOnEditText(const char *str)
|
||||||
switch (_rename_what) {
|
switch (_rename_what) {
|
||||||
#ifdef ENABLE_NETWORK
|
#ifdef ENABLE_NETWORK
|
||||||
case 3: { // Give money, you can only give money in excess of loan
|
case 3: { // Give money, you can only give money in excess of loan
|
||||||
const Company *c = Company::Get(_local_company);
|
const Company *c = Company::GetIfValid(_local_company);
|
||||||
|
if (c == NULL) break;
|
||||||
Money money = min(c->money - c->current_loan, (Money)(atoi(str) / _currency->rate));
|
Money money = min(c->money - c->current_loan, (Money)(atoi(str) / _currency->rate));
|
||||||
|
|
||||||
uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0
|
uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0
|
||||||
|
|
Loading…
Reference in New Issue