diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-28 00:24:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-28 00:24:57 +0200 |
commit | 2f5ed3877cf1d597673e584d77103497dc0377db (patch) | |
tree | 04268ef2f19125969b11c5aff0c979fffe31e972 /src/video_core | |
parent | Merge pull request #1188 from lioncash/unused (diff) | |
parent | fix SEL_IMM bitstring (diff) | |
download | yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.gz yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.bz2 yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.lz yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.xz yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.tar.zst yuzu-2f5ed3877cf1d597673e584d77103497dc0377db.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/engines/shader_bytecode.h | 2 |
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: INST("0011100-00011---", Id::ISCADD_IMM, Type::ArithmeticInteger, "ISCADD_IMM"), INST("0100110010100---", Id::SEL_C, Type::ArithmeticInteger, "SEL_C"), INST("0101110010100---", Id::SEL_R, Type::ArithmeticInteger, "SEL_R"), - INST("0011100010100---", Id::SEL_IMM, Type::ArithmeticInteger, "SEL_IMM"), + INST("0011100-10100---", Id::SEL_IMM, Type::ArithmeticInteger, "SEL_IMM"), INST("0101000010000---", Id::MUFU, Type::Arithmetic, "MUFU"), INST("0100110010010---", Id::RRO_C, Type::Arithmetic, "RRO_C"), INST("0101110010010---", Id::RRO_R, Type::Arithmetic, "RRO_R"), |