Rasterizer/Textures: Fixed a bug where the I4 format would get twice the real stride.

Also added its name to the texture viewer widget
This commit is contained in:
Subv 2015-07-19 13:15:23 -05:00
parent 71be5853e0
commit 3600c32483
2 changed files with 2 additions and 1 deletions

View file

@ -200,6 +200,7 @@ struct Regs {
case TextureFormat::IA8:
return 4;
case TextureFormat::I4:
case TextureFormat::A4:
return 1;