summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/decode
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2019-07-18 16:09:26 +0200
committerFernando Sahmkow <fsahmkow27@gmail.com>2019-07-18 16:09:26 +0200
commit5a06e338598d3893bc587de303d3d25526180d14 (patch)
treeddbc03806800794794496897463e380769f98237 /src/video_core/shader/decode
parentGPU: Add missing puller methods. (diff)
downloadyuzu-5a06e338598d3893bc587de303d3d25526180d14.tar
yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.gz
yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.bz2
yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.lz
yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.xz
yuzu-5a06e338598d3893bc587de303d3d25526180d14.tar.zst
yuzu-5a06e338598d3893bc587de303d3d25526180d14.zip
Diffstat (limited to 'src/video_core/shader/decode')
-rw-r--r--src/video_core/shader/decode/ffma.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader/decode/ffma.cpp b/src/video_core/shader/decode/ffma.cpp
index a39283a9c..cb3a9cfc1 100644
--- a/src/video_core/shader/decode/ffma.cpp
+++ b/src/video_core/shader/decode/ffma.cpp
@@ -19,9 +19,9 @@ u32 ShaderIR::DecodeFfma(NodeBlock& bb, u32 pc) {
UNIMPLEMENTED_IF_MSG(instr.ffma.cc != 0, "FFMA cc not implemented");
DEBUG_ASSERT_MSG(instr.ffma.tab5980_0 == 1, "FFMA tab5980_0({}) not implemented",
- instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO
+ instr.ffma.tab5980_0.Value()); // Seems to be 1 by default based on SMO
DEBUG_ASSERT_MSG(instr.ffma.tab5980_1 == 0, "FFMA tab5980_1({}) not implemented",
- instr.ffma.tab5980_1.Value());
+ instr.ffma.tab5980_1.Value());
const Node op_a = GetRegister(instr.gpr8);