mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 14:49:59 +00:00
Merge pull request #949 from yuriks/fix-st
Pica: Correct switched S/T texture wrapping registers.
This commit is contained in:
commit
1c81813b72
1 changed files with 2 additions and 2 deletions
|
@ -132,8 +132,8 @@ struct Regs {
|
||||||
};
|
};
|
||||||
|
|
||||||
union {
|
union {
|
||||||
BitField< 8, 2, WrapMode> wrap_s;
|
BitField< 8, 2, WrapMode> wrap_t;
|
||||||
BitField<12, 2, WrapMode> wrap_t;
|
BitField<12, 2, WrapMode> wrap_s;
|
||||||
};
|
};
|
||||||
|
|
||||||
INSERT_PADDING_WORDS(0x1);
|
INSERT_PADDING_WORDS(0x1);
|
||||||
|
|
Loading…
Reference in a new issue