diff options
author | bunnei <bunneidev@gmail.com> | 2019-02-05 17:15:26 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 17:15:26 -0500 |
commit | 7aa7d8f4ff9d70a64c4b162212466c71b2c67387 (patch) | |
tree | ed64af3eacfc64c1ca6ce75d55599461778e94cd | |
parent | 72c70d6808b86bd1eb602a18cd6c987e60c58447 (diff) | |
parent | b5e685b297043293a6736b1c58dbe218d525c579 (diff) |
Merge pull request #2085 from ReinUsesLisp/cube-minus-one
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; |