summaryrefslogtreecommitdiff
path: root/src/toolbar_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-01-11 20:32:32 +0000
committerrubidium <rubidium@openttd.org>2010-01-11 20:32:32 +0000
commitebe99fd4935d54466730095e7a9f239181d5ba7b (patch)
treeadaacb8e6827eaad9ad49c81905a04dca0bf8c21 /src/toolbar_gui.cpp
parent3e5a87a52cc8355a2a5c2831c60643bf30d41a3a (diff)
downloadopenttd-ebe99fd4935d54466730095e7a9f239181d5ba7b.tar.xz
(svn r18784) -Codechange: make NetworkSend_Command accept a company instead of using _local_company to pass that information, with the whole mess when you don't want the company to be _local_company.
Diffstat (limited to 'src/toolbar_gui.cpp')
-rw-r--r--src/toolbar_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/toolbar_gui.cpp b/src/toolbar_gui.cpp
index 3f4d8e1b0..f5c61cdcf 100644
--- a/src/toolbar_gui.cpp
+++ b/src/toolbar_gui.cpp
@@ -486,7 +486,7 @@ static void MenuClickCompany(int index)
if (_network_server) {
DoCommandP(0, 0, _network_own_client_id, CMD_COMPANY_CTRL);
} else {
- NetworkSend_Command(0, 0, 0, CMD_COMPANY_CTRL, NULL, NULL);
+ NetworkSend_Command(0, 0, 0, CMD_COMPANY_CTRL, NULL, NULL, _local_company);
}
return;