Skip to content
Snippets Groups Projects
Commit b5e685b2 authored by ReinUsesLisp's avatar ReinUsesLisp
Browse files

video_core/texture: Fix BitField size for depth_minus_one

parent bb4549a7
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment