mirror of https://github.com/PCSX2/pcsx2.git
GS/HW: Fix incorrect bitfield width in height cache
This lead to duplication and possibly larger-than-intended heights.
This commit is contained in:
parent
d0d5d991ce
commit
8ac2949a1f
|
@ -305,10 +305,10 @@ public:
|
|||
|
||||
struct
|
||||
{
|
||||
u32 fbp : 9;
|
||||
u32 fbp : 14;
|
||||
u32 fbw : 6;
|
||||
u32 psm : 6;
|
||||
u32 pad : 11;
|
||||
u32 pad : 6;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue