diff options
| author | 2019-02-05 17:15:26 -0500 | |
|---|---|---|
| committer | 2019-02-05 17:15:26 -0500 | |
| commit | 7aa7d8f4ff9d70a64c4b162212466c71b2c67387 (patch) | |
| tree | ed64af3eacfc64c1ca6ce75d55599461778e94cd /src | |
| parent | Merge pull request #2081 from ReinUsesLisp/lmem-64 (diff) | |
| parent | video_core/texture: Fix BitField size for depth_minus_one (diff) | |
| download | yuzu-7aa7d8f4ff9d70a64c4b162212466c71b2c67387.tar.gz yuzu-7aa7d8f4ff9d70a64c4b162212466c71b2c67387.tar.xz yuzu-7aa7d8f4ff9d70a64c4b162212466c71b2c67387.zip | |
Merge pull request #2085 from ReinUsesLisp/cube-minus-one
video_core/texture: Fix BitField size for depth_minus_one
Diffstat (limited to 'src')
| -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 { | |||
| 182 | }; | 182 | }; |
| 183 | union { | 183 | union { |
| 184 | BitField<0, 16, u32> height_minus_1; | 184 | BitField<0, 16, u32> height_minus_1; |
| 185 | BitField<16, 15, u32> depth_minus_1; | 185 | BitField<16, 14, u32> depth_minus_1; |
| 186 | }; | 186 | }; |
| 187 | union { | 187 | union { |
| 188 | BitField<6, 13, u32> mip_lod_bias; | 188 | BitField<6, 13, u32> mip_lod_bias; |