mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 12:19:59 +00:00
small fix for alphaToOne bit location
This commit is contained in:
parent
e69eb3c760
commit
5297495c87
1 changed files with 2 additions and 2 deletions
|
@ -728,8 +728,8 @@ public:
|
|||
u32 zeta_enable;
|
||||
|
||||
union {
|
||||
BitField<1, 1, u32> alpha_to_coverage;
|
||||
BitField<2, 1, u32> alpha_to_one;
|
||||
BitField<0, 1, u32> alpha_to_coverage;
|
||||
BitField<4, 1, u32> alpha_to_one;
|
||||
} multisample_control;
|
||||
|
||||
INSERT_PADDING_WORDS(0x7);
|
||||
|
|
Loading…
Reference in a new issue