소스 검색

Pica: Correct switched S/T texture wrapping registers

This was found and hwtested by Lectem
Yuri Kunde Schlesner 11 년 전
부모
커밋
ae985bf500
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/video_core/pica.h

+ 2 - 2
src/video_core/pica.h

@@ -132,8 +132,8 @@ struct Regs {
         };
 
         union {
-            BitField< 8, 2, WrapMode> wrap_s;
-            BitField<12, 2, WrapMode> wrap_t;
+            BitField< 8, 2, WrapMode> wrap_t;
+            BitField<12, 2, WrapMode> wrap_s;
         };
 
         INSERT_PADDING_WORDS(0x1);