diff options
author | Michael Lutz <michi@icosahedron.de> | 2021-11-06 18:59:52 +0100 |
---|---|---|
committer | Michael Lutz <michi@icosahedron.de> | 2021-11-06 20:21:07 +0100 |
commit | 8c558d74a59fe10061bb16b83d708ad8e65eb020 (patch) | |
tree | 144bdfd0a20b901ce9afcfc6b0f809fc98b26a7d | |
parent | 73001ae1a9282aadb9512b93845f2fe4c1a7e5e9 (diff) | |
download | openttd-8c558d74a59fe10061bb16b83d708ad8e65eb020.tar.xz |
Fix 55a11710: Curly braces need to be double-escaped for (std::)fmt.
-rw-r--r-- | src/network/network.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/network.cpp b/src/network/network.cpp index 109a2cce7..dd0a91594 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -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(); } |