mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
Merge pull request #1519 from JayFoxRox/vp-offset-fix
PICA: Fix viewport offset
This commit is contained in:
commit
55f24e1cf4
1 changed files with 2 additions and 2 deletions
|
@ -117,8 +117,8 @@ struct Regs {
|
||||||
INSERT_PADDING_WORDS(0x11);
|
INSERT_PADDING_WORDS(0x11);
|
||||||
|
|
||||||
union {
|
union {
|
||||||
BitField< 0, 16, u32> x;
|
BitField< 0, 10, s32> x;
|
||||||
BitField<16, 16, u32> y;
|
BitField<16, 10, s32> y;
|
||||||
} viewport_corner;
|
} viewport_corner;
|
||||||
|
|
||||||
INSERT_PADDING_WORDS(0x17);
|
INSERT_PADDING_WORDS(0x17);
|
||||||
|
|
Loading…
Reference in a new issue