mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 23:49:58 +00:00
Merge pull request #2085 from ReinUsesLisp/cube-minus-one
video_core/texture: Fix BitField size for depth_minus_one
This commit is contained in:
commit
7aa7d8f4ff
1 changed files with 1 additions and 1 deletions
|
@ -182,7 +182,7 @@ struct TICEntry {
|
||||||
};
|
};
|
||||||
union {
|
union {
|
||||||
BitField<0, 16, u32> height_minus_1;
|
BitField<0, 16, u32> height_minus_1;
|
||||||
BitField<16, 15, u32> depth_minus_1;
|
BitField<16, 14, u32> depth_minus_1;
|
||||||
};
|
};
|
||||||
union {
|
union {
|
||||||
BitField<6, 13, u32> mip_lod_bias;
|
BitField<6, 13, u32> mip_lod_bias;
|
||||||
|
|
Loading…
Reference in a new issue