diff options
author | bunnei <bunneidev@gmail.com> | 2015-09-02 08:45:01 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-09-02 08:45:01 -0400 |
commit | d02c9c83f53ea6d3d1b48a754390c316cb697e0e (patch) | |
tree | 56b71527dd31b102d350f2f5f679c7bffce102a6 /src/video_core/shader | |
parent | 5e3536f66f5ea1a3e96112ab83b41bb2b1c55f8f (diff) | |
parent | ba998b85a1ba1e022b70008452e341a19c0242c6 (diff) |
Merge pull request #1099 from aroulin/video-core-format-specifier
video_core: Fix format specifiers warnings
Diffstat (limited to 'src/video_core/shader')
-rw-r--r-- | src/video_core/shader/shader_jit_x64.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/shader/shader_jit_x64.cpp b/src/video_core/shader/shader_jit_x64.cpp index c7b63a9b7..1039c8df4 100644 --- a/src/video_core/shader/shader_jit_x64.cpp +++ b/src/video_core/shader/shader_jit_x64.cpp @@ -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); } } |