diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-05 04:31:11 -0300 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2019-02-05 04:32:06 -0300 |
commit | b5e685b297043293a6736b1c58dbe218d525c579 (patch) | |
tree | a3b53cb02e981a4846fc8ed0b204e242e71b0e18 | |
parent | bb4549a73d207637a1407cffe662fa58ee58d594 (diff) |
video_core/texture: Fix BitField size for depth_minus_one
-rw-r--r-- | src/video_core/textures/texture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h index e7c78bee2..bdb40dacf 100644 --- a/src/video_core/textures/texture.h +++ b/src/video_core/textures/texture.h @@ -182,7 +182,7 @@ struct TICEntry { }; union { BitField<0, 16, u32> height_minus_1; - BitField<16, 15, u32> depth_minus_1; + BitField<16, 14, u32> depth_minus_1; }; union { BitField<6, 13, u32> mip_lod_bias; |