diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-26 05:35:44 +0100 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2018-12-26 05:35:44 +0100 |
commit | aaa0e6c3465649417b9334326ab864f19dba2cd5 (patch) | |
tree | 429975ee2690c35f059839ac5756b2852cfd0aba /src | |
parent | Merge pull request #1886 from FearlessTobi/port-4164 (diff) | |
download | yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar.gz yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar.bz2 yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar.lz yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar.xz yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.tar.zst yuzu-aaa0e6c3465649417b9334326ab864f19dba2cd5.zip |
Diffstat (limited to 'src')
-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 eb703bb5a..e53c77f2b 100644 --- a/src/video_core/engines/shader_bytecode.h +++ b/src/video_core/engines/shader_bytecode.h @@ -1049,7 +1049,7 @@ union Instruction { BitField<49, 1, u64> nodep_flag; BitField<50, 3, u64> component_mask_selector; BitField<53, 4, u64> texture_info; - BitField<60, 1, u64> fp32_flag; + BitField<59, 1, u64> fp32_flag; TextureType GetTextureType() const { // The TEXS instruction has a weird encoding for the texture type. |