diff options
| author | 2019-02-05 04:31:11 -0300 | |
|---|---|---|
| committer | 2019-02-05 04:32:06 -0300 | |
| commit | b5e685b297043293a6736b1c58dbe218d525c579 (patch) | |
| tree | a3b53cb02e981a4846fc8ed0b204e242e71b0e18 /src | |
| parent | Merge pull request #2082 from FernandoS27/txq-stl (diff) | |
| download | yuzu-b5e685b297043293a6736b1c58dbe218d525c579.tar.gz yuzu-b5e685b297043293a6736b1c58dbe218d525c579.tar.xz yuzu-b5e685b297043293a6736b1c58dbe218d525c579.zip | |
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; |