diff options
| author | 2015-07-19 19:26:50 -0300 | |
|---|---|---|
| committer | 2015-07-19 19:27:23 -0300 | |
| commit | ae985bf5008824f8f1a1c0e6c8942f87ae830e04 (patch) | |
| tree | f4f44ff17524c33fb2477d9ca8ce349f9167bd7b /src | |
| parent | Merge pull request #948 from yuriks/fix-dp3 (diff) | |
| download | yuzu-ae985bf5008824f8f1a1c0e6c8942f87ae830e04.tar.gz yuzu-ae985bf5008824f8f1a1c0e6c8942f87ae830e04.tar.xz yuzu-ae985bf5008824f8f1a1c0e6c8942f87ae830e04.zip | |
Pica: Correct switched S/T texture wrapping registers
This was found and hwtested by Lectem
Diffstat (limited to 'src')
| -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 5d0d2bf98..628e73213 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h | |||
| @@ -132,8 +132,8 @@ struct Regs { | |||
| 132 | }; | 132 | }; |
| 133 | 133 | ||
| 134 | union { | 134 | union { |
| 135 | BitField< 8, 2, WrapMode> wrap_s; | 135 | BitField< 8, 2, WrapMode> wrap_t; |
| 136 | BitField<12, 2, WrapMode> wrap_t; | 136 | BitField<12, 2, WrapMode> wrap_s; |
| 137 | }; | 137 | }; |
| 138 | 138 | ||
| 139 | INSERT_PADDING_WORDS(0x1); | 139 | INSERT_PADDING_WORDS(0x1); |