diff options
author | rubidium <rubidium@openttd.org> | 2009-11-02 15:39:03 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-11-02 15:39:03 +0000 |
commit | e1f0d0476e577d1a54f679a6bb9ee949f906e1b6 (patch) | |
tree | 2eef9ae335446c383f501ebdf5f32c1195579587 | |
parent | 27218dff08a8eb195ade3f78f31a1f1cd115a41a (diff) | |
download | openttd-e1f0d0476e577d1a54f679a6bb9ee949f906e1b6.tar.xz |
(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
-rw-r--r-- | src/main_gui.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main_gui.cpp b/src/main_gui.cpp index d85948aeb..8fcb1f200 100644 --- a/src/main_gui.cpp +++ b/src/main_gui.cpp @@ -66,7 +66,8 @@ void HandleOnEditText(const char *str) switch (_rename_what) { #ifdef ENABLE_NETWORK 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)); uint32 money_c = Clamp(ClampToI32(money), 0, 20000000); // Clamp between 20 million and 0 |