mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Cast to int for enums that are not formattable
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user