summaryrefslogtreecommitdiff
path: root/src/dock_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
commit7da743a0dc8d9e5098da2464d405a0ed93803c17 (patch)
tree4a5fe41066de010bd441a15fc54033301d5a6f07 /src/dock_gui.cpp
parent09fca459a7acd7c1b1e14712678a977d30a13297 (diff)
downloadopenttd-7da743a0dc8d9e5098da2464d405a0ed93803c17.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/dock_gui.cpp')
-rw-r--r--src/dock_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dock_gui.cpp b/src/dock_gui.cpp
index 433d4c34a..caecae95a 100644
--- a/src/dock_gui.cpp
+++ b/src/dock_gui.cpp
@@ -282,7 +282,7 @@ static const WindowDesc _build_docks_toolbar_desc = {
void ShowBuildDocksToolbar()
{
- if (!IsValidCompanyID(_current_company)) return;
+ if (!IsValidCompanyID(_local_company)) return;
DeleteWindowByClass(WC_BUILD_TOOLBAR);
AllocateWindowDescFront<BuildDocksToolbarWindow>(&_build_docks_toolbar_desc, TRANSPORT_WATER);