diff options
author | aroulin <andy.roulin@epfl.ch> | 2015-09-02 08:19:11 +0200 |
---|---|---|
committer | aroulin <andy.roulin@epfl.ch> | 2015-09-02 08:20:00 +0200 |
commit | ba998b85a1ba1e022b70008452e341a19c0242c6 (patch) | |
tree | 56b71527dd31b102d350f2f5f679c7bffce102a6 /src/video_core/shader | |
parent | Merge pull request #1072 from yuriks/GetSystemTick-advance-time (diff) | |
download | yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar.gz yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar.bz2 yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar.lz yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar.xz yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.tar.zst yuzu-ba998b85a1ba1e022b70008452e341a19c0242c6.zip |
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); } } |