summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-27 18:24:57 -0400
committerGravatar GitHub2018-08-27 18:24:57 -0400
commit2f5ed3877cf1d597673e584d77103497dc0377db (patch)
tree04268ef2f19125969b11c5aff0c979fffe31e972 /src/video_core
parentMerge pull request #1188 from lioncash/unused (diff)
parentfix SEL_IMM bitstring (diff)
downloadyuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.gz
yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.xz
yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.zip
Merge pull request #1169 from Lakumakkara/sel
shader_bytecode: fix SEL_IMM bitstring
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 7fd622159..625ecdfcd 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -866,7 +866,7 @@ private:
866 INST("0011100-00011---", Id::ISCADD_IMM, Type::ArithmeticInteger, "ISCADD_IMM"), 866 INST("0011100-00011---", Id::ISCADD_IMM, Type::ArithmeticInteger, "ISCADD_IMM"),
867 INST("0100110010100---", Id::SEL_C, Type::ArithmeticInteger, "SEL_C"), 867 INST("0100110010100---", Id::SEL_C, Type::ArithmeticInteger, "SEL_C"),
868 INST("0101110010100---", Id::SEL_R, Type::ArithmeticInteger, "SEL_R"), 868 INST("0101110010100---", Id::SEL_R, Type::ArithmeticInteger, "SEL_R"),
869 INST("0011100010100---", Id::SEL_IMM, Type::ArithmeticInteger, "SEL_IMM"), 869 INST("0011100-10100---", Id::SEL_IMM, Type::ArithmeticInteger, "SEL_IMM"),
870 INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"), 870 INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"),
871 INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"), 871 INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"),
872 INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"), 872 INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"),