Revert recompiler log warning

This commit is contained in:
TheThunderTurner 2026-02-11 09:22:32 +01:00 committed by GitHub
parent f27d23a6cb
commit d678d1ce6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -34,7 +34,7 @@ IR::Program TranslateProgram(const std::span<const u32>& 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());