summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode/xmad.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2018-12-21 07:12:16 +0100
committerReinUsesLisp <reinuseslisp@airmail.cc>2019-01-15 21:54:52 +0100
commit946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99 (patch)
tree32fd89a25b99db56b69cda8382023ba349edead3 /src/video_core/shader/decode/xmad.cpp
parentshader_decode: Implement LEA (diff)
downloadyuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar.gz
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar.bz2
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar.lz
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar.xz
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.tar.zst
yuzu-946c86f0bb9fd7a2e1331d27c059bcc6e7cb3c99.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/shader/decode/xmad.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/xmad.cpp b/src/video_core/shader/decode/xmad.cpp
index fcab1fb80..596f0ddc8 100644
--- a/src/video_core/shader/decode/xmad.cpp
+++ b/src/video_core/shader/decode/xmad.cpp
@@ -21,7 +21,7 @@ u32 ShaderIR::DecodeXmad(BasicBlock& bb, u32 pc) {
UNIMPLEMENTED_IF_MSG(instr.generates_cc,
"Condition codes generation in XMAD is not implemented");
- Node op_a = GetRegister(instr.gpr8); // instr.xmad.sign_a
+ Node op_a = GetRegister(instr.gpr8);
// TODO(bunnei): Needs to be fixed once op_a or op_b is signed
UNIMPLEMENTED_IF(instr.xmad.sign_a != instr.xmad.sign_b);