diff options
| author | 2015-07-19 20:23:04 +0200 | |
|---|---|---|
| committer | 2015-07-19 20:23:04 +0200 | |
| commit | ef828a1cddf9b628e498ed6aa9f7778d01b7d10e (patch) | |
| tree | 29cd28b2f867724fc4e4eb1744cf8e833c24bda6 /src/video_core | |
| parent | Merge pull request #941 from citra-emu/armv6-thumb-mov (diff) | |
| parent | Rasterizer/Textures: Fixed a bug where the I4 format would get twice the real... (diff) | |
| download | yuzu-ef828a1cddf9b628e498ed6aa9f7778d01b7d10e.tar.gz yuzu-ef828a1cddf9b628e498ed6aa9f7778d01b7d10e.tar.xz yuzu-ef828a1cddf9b628e498ed6aa9f7778d01b7d10e.zip | |
Merge pull request #943 from Subv/ia4
Rasterizer/Textures: Fixed a bug where the I4 format would get twice the real stride.
Diffstat (limited to 'src/video_core')
| -rw-r--r-- | src/video_core/pica.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/pica.h b/src/video_core/pica.h index 026b10a62..5d0d2bf98 100644 --- a/src/video_core/pica.h +++ b/src/video_core/pica.h | |||
| @@ -200,6 +200,7 @@ struct Regs { | |||
| 200 | case TextureFormat::IA8: | 200 | case TextureFormat::IA8: |
| 201 | return 4; | 201 | return 4; |
| 202 | 202 | ||
| 203 | case TextureFormat::I4: | ||
| 203 | case TextureFormat::A4: | 204 | case TextureFormat::A4: |
| 204 | return 1; | 205 | return 1; |
| 205 | 206 | ||