mirror of https://github.com/OpenTTD/OpenTTD
(svn r10312) -Fix (r10210): the 64 values in the 'players' console command were not printed properly; they did even "overflow" into the next to-be-printed values.
parent
a191162f59
commit
7f8535526b
|
@ -1248,7 +1248,7 @@ DEF_CONSOLE_CMD(ConPlayers)
|
||||||
const NetworkPlayerInfo *npi = &_network_player_info[p->index];
|
const NetworkPlayerInfo *npi = &_network_player_info[p->index];
|
||||||
|
|
||||||
GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index], lastof(buffer));
|
GetString(buffer, STR_00D1_DARK_BLUE + _player_colors[p->index], lastof(buffer));
|
||||||
IConsolePrintF(8, "#:%d(%s) Company Name: '%s' Year Founded: %d Money: %d Loan: %d Value: %" OTTD_PRINTF64 "d (T:%d, R:%d, P:%d, S:%d) %sprotected",
|
IConsolePrintF(8, "#:%d(%s) Company Name: '%s' Year Founded: %d Money: %" OTTD_PRINTF64 "d Loan: %" OTTD_PRINTF64 "d Value: %" OTTD_PRINTF64 "d (T:%d, R:%d, P:%d, S:%d) %sprotected",
|
||||||
p->index + 1, buffer, npi->company_name, p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
|
p->index + 1, buffer, npi->company_name, p->inaugurated_year, p->player_money, p->current_loan, CalculateCompanyValue(p),
|
||||||
/* trains */ npi->num_vehicle[0],
|
/* trains */ npi->num_vehicle[0],
|
||||||
/* lorry + bus */ npi->num_vehicle[1] + npi->num_vehicle[2],
|
/* lorry + bus */ npi->num_vehicle[1] + npi->num_vehicle[2],
|
||||||
|
|
Loading…
Reference in New Issue