From 825092ad33a2e7466e79520c1338d0bed56ca299 Mon Sep 17 00:00:00 2001 From: Ferdinand Bachmann Date: Sat, 4 Jan 2025 18:45:32 +0100 Subject: [PATCH] BBA/HLE: Fix incorrect fmt format string --- Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp index 8e9248f830..f1c0a5f4f7 100644 --- a/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp +++ b/Source/Core/Core/HW/EXI/BBA/BuiltIn.cpp @@ -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; }