diff options
author | bunnei <bunneidev@gmail.com> | 2019-12-07 01:05:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-07 01:05:40 +0100 |
commit | d49ed4a421f7b4a7649c91f136108aa24ebebd4f (patch) | |
tree | 12b148d58c48efdcecf6b8a48e4ccd8b13c39066 | |
parent | Merge pull request #3109 from FernandoS27/new-instr (diff) | |
parent | shader_bytecode: Remove corrupted character (diff) | |
download | yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar.gz yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar.bz2 yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar.lz yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar.xz yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.tar.zst yuzu-d49ed4a421f7b4a7649c91f136108aa24ebebd4f.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 9c7b9b370..8b7dcbe9d 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -2002,7 +2002,7 @@ private: INST("010110110100----", Id::ICMP_R, Type::ArithmeticInteger, "ICMP_R"), INST("010010110100----", Id::ICMP_CR, Type::ArithmeticInteger, "ICMP_CR"), INST("0011011-0100----", Id::ICMP_IMM, Type::ArithmeticInteger, "ICMP_IMM"), - INST("0101110000110---", Id::FLO_R, Type::ArithmeticInteger, "FLO_R"), + INST("0101110000110---", Id::FLO_R, Type::ArithmeticInteger, "FLO_R"), INST("0100110000110---", Id::FLO_C, Type::ArithmeticInteger, "FLO_C"), INST("0011100-00110---", Id::FLO_IMM, Type::ArithmeticInteger, "FLO_IMM"), INST("0101101111011---", Id::LEA_R2, Type::ArithmeticInteger, "LEA_R2"), |