summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-12-19 17:32:25 +0100
committerGitHub <noreply@github.com>2019-12-19 17:32:25 +0100
commit253aa523515aee5e767b53a6e0f065745fc1f0a5 (patch)
tree8e05ce252a70c54b9bebaf7932feb033f61b5b23
parentMerge pull request #3221 from ReinUsesLisp/vk-scheduler (diff)
parentshader_bytecode: Fix TLD4S encoding (diff)
downloadyuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar.gz
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar.bz2
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar.lz
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar.xz
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.tar.zst
yuzu-253aa523515aee5e767b53a6e0f065745fc1f0a5.zip
-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 d6a2cc8b8..dfb12cd2d 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -1973,7 +1973,7 @@ private:
INST("1101-01---------", Id::TLDS, Type::Texture, "TLDS"),
INST("110010----111---", Id::TLD4, Type::Texture, "TLD4"),
INST("1101111011111---", Id::TLD4_B, Type::Texture, "TLD4_B"),
- INST("11011111--00----", Id::TLD4S, Type::Texture, "TLD4S"),
+ INST("11011111-0------", Id::TLD4S, Type::Texture, "TLD4S"),
INST("110111110110----", Id::TMML_B, Type::Texture, "TMML_B"),
INST("1101111101011---", Id::TMML, Type::Texture, "TMML"),
INST("11011110011110--", Id::TXD_B, Type::Texture, "TXD_B"),