summaryrefslogtreecommitdiffstats
path: root/src/video_core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-07-12 21:42:58 +0200
committerGitHub <noreply@github.com>2018-07-12 21:42:58 +0200
commit3ff21345b4527f68a7d67c3431ba793a584da935 (patch)
tree6dbc24dab2acd9dbe5e6ab8210c60197e7efa258 /src/video_core
parentPort #3335 and #3373 from Citra: "Small SDL fixes" and "Print the actual error preventing SDL from working" (#637) (diff)
parentGPU: Corrected the decoding of FFMA for immediate operands. (diff)
downloadyuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar.gz
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar.bz2
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar.lz
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar.xz
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.tar.zst
yuzu-3ff21345b4527f68a7d67c3431ba793a584da935.zip
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/engines/shader_bytecode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 2bc1782ad..bdf97e77f 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -679,7 +679,7 @@ private:
INST("1101101---------", Id::TLDS, Type::Memory, "TLDS"),
INST("111000110000----", Id::EXIT, Type::Trivial, "EXIT"),
INST("11100000--------", Id::IPA, Type::Trivial, "IPA"),
- INST("001100101-------", Id::FFMA_IMM, Type::Ffma, "FFMA_IMM"),
+ INST("0011001-1-------", Id::FFMA_IMM, Type::Ffma, "FFMA_IMM"),
INST("010010011-------", Id::FFMA_CR, Type::Ffma, "FFMA_CR"),
INST("010100011-------", Id::FFMA_RC, Type::Ffma, "FFMA_RC"),
INST("010110011-------", Id::FFMA_RR, Type::Ffma, "FFMA_RR"),