summaryrefslogtreecommitdiff
path: root/src/main_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-02-04 16:45:07 +0000
committerrubidium <rubidium@openttd.org>2009-02-04 16:45:07 +0000
commita49197f522ea4377c731c69ac6e4117c49170682 (patch)
tree4a5fe41066de010bd441a15fc54033301d5a6f07 /src/main_gui.cpp
parentce1fcfd8c03f0f4e46915abfc96d635d856421cc (diff)
downloadopenttd-a49197f522ea4377c731c69ac6e4117c49170682.tar.xz
(svn r15336) -Fix: do not use _current_company in the GUI as there are no guarantees that _current_company is the same as _local_company.
Diffstat (limited to 'src/main_gui.cpp')
-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 e4e6913f2..e333bf7f8 100644
--- a/src/main_gui.cpp
+++ b/src/main_gui.cpp
@@ -61,7 +61,7 @@ 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 = GetCompany(_current_company);
+ const Company *c = GetCompany(_local_company);
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