Przeglądaj źródła

Merge pull request #1519 from JayFoxRox/vp-offset-fix

PICA: Fix viewport offset
bunnei 10 lat temu
rodzic
commit
55f24e1cf4
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/video_core/pica.h

+ 2 - 2
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);