dep/ggpo-x: Fix incorrect format string

This commit is contained in:
Stenzek 2023-04-11 22:29:08 +10:00
parent 3f1c754b7d
commit c4ff20635a
1 changed files with 2 additions and 2 deletions

View File

@ -402,8 +402,8 @@ UdpProtocol::UpdateNetworkStats(void)
_kbps_sent = int(Bps / 1024);
Log("Network Stats -- Bandwidth: %.2f KBps Packets Sent: %5d (%.2f pps) "
"KB Sent: %.2f UDP Overhead: %.2f %%.\n",
Log("Network Stats -- Bandwidth: %d KBps Packets Sent: %5d (%.2f pps) "
"KB Sent: %.2f UDP Overhead: %.2f pct.\n",
_kbps_sent,
_packets_sent,
(float)_packets_sent * 1000 / (now - _stats_start_time),