mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 12:48:57 +00:00
Cast to int for enums that are not formattable
This commit is contained in:
parent
5465775d11
commit
1a92699455
19 changed files with 60 additions and 42 deletions
|
@ -194,7 +194,7 @@ void TraversalClient::HandleServerPacket(TraversalPacket* packet)
|
|||
break;
|
||||
}
|
||||
default:
|
||||
WARN_LOG_FMT(NETPLAY, "Received unknown packet with type {}", packet->type);
|
||||
WARN_LOG_FMT(NETPLAY, "Received unknown packet with type {}", static_cast<int>(packet->type));
|
||||
break;
|
||||
}
|
||||
if (packet->type != TraversalPacketType::Ack)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue