From b5e685b297043293a6736b1c58dbe218d525c579 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Tue, 5 Feb 2019 04:31:11 -0300 Subject: [PATCH] video_core/texture: Fix BitField size for depth_minus_one --- src/video_core/textures/texture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;