diff options
author | rubidium <rubidium@openttd.org> | 2010-12-05 22:21:13 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-12-05 22:21:13 +0000 |
commit | 9139a6c858a6af95e2fd9a1abacec520c62a8bd0 (patch) | |
tree | aaf375eb0eff1ab12871d8867f80a23941a94b01 /src/network/core | |
parent | 440a529701a8a838cab57d41d97b9c0bfad0d43d (diff) | |
download | openttd-9139a6c858a6af95e2fd9a1abacec520c62a8bd0.tar.xz |
(svn r21405) -Codechange: prepare sending of company information in the UDP packet for longer company names (in bytes), by truncating the names if needed
Diffstat (limited to 'src/network/core')
-rw-r--r-- | src/network/core/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/core.h b/src/network/core/core.h index 932199a9c..10df20af7 100644 --- a/src/network/core/core.h +++ b/src/network/core/core.h @@ -76,7 +76,7 @@ public: void SendGRFIdentifier(Packet *p, const GRFIdentifier *grf); void ReceiveGRFIdentifier(Packet *p, GRFIdentifier *grf); - void SendCompanyInformation(Packet *p, const struct Company *c, const struct NetworkCompanyStats *stats); + void SendCompanyInformation(Packet *p, const struct Company *c, const struct NetworkCompanyStats *stats, uint max_len = NETWORK_COMPANY_NAME_LENGTH); }; #endif /* ENABLE_NETWORK */ |