video_core: Fix format specifiers warnings

This commit is contained in:
aroulin 2015-09-02 08:19:11 +02:00
parent 5e3536f66f
commit ba998b85a1
2 changed files with 3 additions and 2 deletions

View file

@ -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);
}
}