VideoCommon: Fixed the bug that some texture become black in SSSE3.1 codes.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5309 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
nodchip 2010-04-10 01:37:51 +00:00
parent ab76cbf2fc
commit 32794fc028
1 changed files with 0 additions and 1 deletions

View File

@ -970,7 +970,6 @@ PC_TexFormat TexDecoder_Decode_real(u8 *dst, const u8 *src, int width, int heigh
for (int x = 0; x < width; x += 8)
for (int iy = 0; iy < 4; iy++, src += 8)
decodebytesC8_To_Raw16_SSSE3((u16*)dst + (y + iy) * width + x, src, tlutaddr);
break;
} else
#endif