Fix 55a11710: Curly braces need to be double-escaped for (std::)fmt.

This commit is contained in:
Michael Lutz 2021-11-06 18:59:52 +01:00
parent 73001ae1a9
commit 8c558d74a5
1 changed files with 1 additions and 1 deletions

View File

@ -1073,7 +1073,7 @@ void NetworkGameLoop()
if (sync_state[0] == _random.state[0] && sync_state[1] == _random.state[1]) {
Debug(desync, 0, "Sync check: {:08x}; {:02x}; match", _date, _date_fract);
} else {
Debug(desync, 0, "Sync check: {:08x}; {:02x}; mismatch expected {{:08x}, {:08x}}, got {{:08x}, {:08x}}",
Debug(desync, 0, "Sync check: {:08x}; {:02x}; mismatch expected {{{:08x}, {:08x}}}, got {{{:08x}, {:08x}}}",
_date, _date_fract, sync_state[0], sync_state[1], _random.state[0], _random.state[1]);
NOT_REACHED();
}