diff options
author | Jannik Vogel <email@jannikvogel.de> | 2016-03-14 18:26:30 +0100 |
---|---|---|
committer | Jannik Vogel <email@jannikvogel.de> | 2016-03-14 18:37:33 +0100 |
commit | 964cfaea47c58bef0178a1f83516d3fffc11319b (patch) | |
tree | c0322b4e3a9793c59ce869b9d73edd7561d06cb7 /src/video_core | |
parent | Merge pull request #1509 from lioncash/noncopy (diff) | |
download | yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.gz yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.bz2 yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.lz yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.xz yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.tar.zst yuzu-964cfaea47c58bef0178a1f83516d3fffc11319b.zip |
Diffstat (limited to 'src/video_core')
-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); |