mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 07:09:48 -06:00
BPMemory: Fix GenMode using an incorrect number of bits for the number of color chans.
This commit is contained in:
@ -540,7 +540,9 @@ union GenMode
|
|||||||
};
|
};
|
||||||
|
|
||||||
BitField< 0,4,u32> numtexgens;
|
BitField< 0,4,u32> numtexgens;
|
||||||
BitField< 4,5,u32> numcolchans;
|
BitField< 4,3,u32> numcolchans;
|
||||||
|
// 1 bit unused?
|
||||||
|
BitField< 8,1,u32> flat_shading; // unconfirmed
|
||||||
BitField< 9,1,u32> multisampling;
|
BitField< 9,1,u32> multisampling;
|
||||||
BitField<10,4,u32> numtevstages;
|
BitField<10,4,u32> numtevstages;
|
||||||
BitField<14,2,CullMode> cullmode;
|
BitField<14,2,CullMode> cullmode;
|
||||||
|
Reference in New Issue
Block a user