diff options
author | rubidium <rubidium@openttd.org> | 2009-02-04 16:45:07 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-02-04 16:45:07 +0000 |
commit | a49197f522ea4377c731c69ac6e4117c49170682 (patch) | |
tree | 4a5fe41066de010bd441a15fc54033301d5a6f07 /src/terraform_gui.cpp | |
parent | ce1fcfd8c03f0f4e46915abfc96d635d856421cc (diff) | |
download | openttd-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/terraform_gui.cpp')
-rw-r--r-- | src/terraform_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terraform_gui.cpp b/src/terraform_gui.cpp index f60d92cf7..82d2f5c42 100644 --- a/src/terraform_gui.cpp +++ b/src/terraform_gui.cpp @@ -334,7 +334,7 @@ static const WindowDesc _terraform_desc = { void ShowTerraformToolbar(Window *link) { - if (!IsValidCompanyID(_current_company)) return; + if (!IsValidCompanyID(_local_company)) return; Window *w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0); if (link == NULL) return; |