From d678d1ce6c4567e886f57e8a35b6ba8d53f1da2b Mon Sep 17 00:00:00 2001 From: TheThunderTurner <64212185+thethunderturner@users.noreply.github.com> Date: Wed, 11 Feb 2026 09:22:32 +0100 Subject: [PATCH] Revert recompiler log warning --- src/shader_recompiler/recompiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shader_recompiler/recompiler.cpp b/src/shader_recompiler/recompiler.cpp index 4bc141bd3..4764ddbec 100644 --- a/src/shader_recompiler/recompiler.cpp +++ b/src/shader_recompiler/recompiler.cpp @@ -34,7 +34,7 @@ IR::Program TranslateProgram(const std::span& code, Pools& pools, Inf // Ensure first instruction is expected. constexpr u32 token_mov_vcchi = 0xBEEB03FF; if (code[0] != token_mov_vcchi) { - LOG_WARNING(Render_Recompiler,"First instruction is 0x{:08x}, not s_mov_b32 vcc_hi, #imm",code[0]); + LOG_WARNING(Render_Recompiler, "First instruction is not s_mov_b32 vcc_hi, #imm"); } Gcn::GcnCodeSlice slice(code.data(), code.data() + code.size());