Explorar o código

Pica: Correct switched S/T texture wrapping registers

This was found and hwtested by Lectem
Yuri Kunde Schlesner %!s(int64=11) %!d(string=hai) anos
pai
achega
ae985bf500
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  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);