BBA/HLE: Fix incorrect fmt format string

This commit is contained in:
Ferdinand Bachmann 2025-01-04 18:45:32 +01:00
parent 9b3b6bea9d
commit 825092ad33

View File

@ -686,7 +686,7 @@ bool CEXIETHERNET::BuiltInBBAInterface::SendFrame(const u8* frame, u32 size)
}
default:
ERROR_LOG_FMT(SP1, "Unsupported EtherType {#06x}", *ethertype);
ERROR_LOG_FMT(SP1, "Unsupported EtherType {:#06x}", *ethertype);
return false;
}