From a49197f522ea4377c731c69ac6e4117c49170682 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 4 Feb 2009 16:45:07 +0000 Subject: (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. --- src/road_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/road_gui.cpp') diff --git a/src/road_gui.cpp b/src/road_gui.cpp index ad9357d99..b36c4a9b7 100644 --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -678,7 +678,7 @@ static const WindowDesc _build_tramway_desc = { void ShowBuildRoadToolbar(RoadType roadtype) { - if (!IsValidCompanyID(_current_company)) return; + if (!IsValidCompanyID(_local_company)) return; _cur_roadtype = roadtype; DeleteWindowByClass(WC_BUILD_TOOLBAR); -- cgit v1.2.3-54-g00ecf