GS/HW: Fix incorrect bitfield width in height cache

This lead to duplication and possibly larger-than-intended heights.
This commit is contained in:
Stenzek 2023-02-17 01:59:01 +10:00 committed by refractionpcsx2
parent d0d5d991ce
commit 8ac2949a1f
1 changed files with 2 additions and 2 deletions

View File

@ -305,10 +305,10 @@ public:
struct
{
u32 fbp : 9;
u32 fbp : 14;
u32 fbw : 6;
u32 psm : 6;
u32 pad : 11;
u32 pad : 6;
};
};