mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-06-29 00:19:35 +01:00
(svn r21417) -Fix: ofcourse MSVC x64 has something to complain about
This commit is contained in:
parent
ea68039718
commit
378e233023
@ -159,7 +159,7 @@ DEF_UDP_RECEIVE_COMMAND(Server, PACKET_UDP_CLIENT_DETAIL_INFO)
|
||||
SetDParam(0, company->index);
|
||||
GetString(company_name, STR_COMPANY_NAME, company_name + max_cname_length - 1);
|
||||
free -= MIN_CI_SIZE;
|
||||
free -= strlen(company_name);
|
||||
free -= (int)strlen(company_name);
|
||||
}
|
||||
if (free >= 0) break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user