mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-18 14:48:07 -05:00
video_core: Fix format specifiers warnings
This commit is contained in:
@ -746,7 +746,8 @@ void JitCompiler::Compile_NextInstr(unsigned* offset) {
|
||||
((*this).*instr_func)(instr);
|
||||
} else {
|
||||
// Unhandled instruction
|
||||
LOG_CRITICAL(HW_GPU, "Unhandled instruction: 0x%02x (0x%08x)", instr.opcode.Value(), instr.hex);
|
||||
LOG_CRITICAL(HW_GPU, "Unhandled instruction: 0x%02x (0x%08x)",
|
||||
instr.opcode.Value().EffectiveOpCode(), instr.hex);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user