1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-31 10:45:16 +01:00

Adjust Formatter function names according to coding style (#11378)

This commit is contained in:
Breno Rodrigues Guimarães
2020-04-20 18:55:15 -03:00
committed by GitHub
parent e1e58423fc
commit 2479256bc1
10 changed files with 93 additions and 93 deletions

View File

@@ -2451,7 +2451,7 @@ void Network::Client_Handle_GAMESTATE(NetworkConnection& connection, NetworkPack
log_info("Wrote desync report to '%s'", outputFile.c_str());
uint8_t args[32]{};
Formatter(args).add<char*>(uniqueFileName);
Formatter(args).Add<char*>(uniqueFileName);
char str_desync[1024];
format_string(str_desync, sizeof(str_desync), STR_DESYNC_REPORT, args);