summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Jannik Vogel2016-03-14 18:26:30 +0100
committerGravatar Jannik Vogel2016-03-14 18:37:33 +0100
commit964cfaea47c58bef0178a1f83516d3fffc11319b (patch)
treec0322b4e3a9793c59ce869b9d73edd7561d06cb7 /src
parentMerge pull request #1509 from lioncash/noncopy (diff)
downloadyuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.gz
yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.xz
yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.zip
PICA: Fix viewport offset
Diffstat (limited to 'src')
-rw-r--r--src/video_core/pica.h4
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 {
117 INSERT_PADDING_WORDS(0x11); 117 INSERT_PADDING_WORDS(0x11);
118 118
119 union { 119 union {
120 BitField< 0, 16, u32> x; 120 BitField< 0, 10, s32> x;
121 BitField<16, 16, u32> y; 121 BitField<16, 10, s32> y;
122 } viewport_corner; 122 } viewport_corner;
123 123
124 INSERT_PADDING_WORDS(0x17); 124 INSERT_PADDING_WORDS(0x17);