diff options
author | bunnei <bunneidev@gmail.com> | 2016-03-16 14:19:53 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-03-16 14:19:53 -0400 |
commit | 55f24e1cf4ab7a7ed2f7f5ad9bd56fd68ca3e9b4 (patch) | |
tree | 6f5a823503315c12d213f74464d5ebd611c239c6 | |
parent | 96cafbe4cc4a1d5cae668a6ba174bead35e2a810 (diff) | |
parent | 964cfaea47c58bef0178a1f83516d3fffc11319b (diff) |
Merge pull request #1519 from JayFoxRox/vp-offset-fix
PICA: Fix viewport offset
-rw-r--r-- | src/video_core/pica.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 2e0c33201..7fb3aa481 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h @@ -117,8 +117,8 @@ struct Regs { INSERT_PADDING_WORDS(0x11); union { - BitField< 0, 16, u32> x; - BitField<16, 16, u32> y; + BitField< 0, 10, s32> x; + BitField<16, 10, s32> y; } viewport_corner; INSERT_PADDING_WORDS(0x17); |