From 32794fc028b6c2c8f78d571361b5770b16b9edf4 Mon Sep 17 00:00:00 2001 From: nodchip Date: Sat, 10 Apr 2010 01:37:51 +0000 Subject: [PATCH] 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 --- Source/Core/VideoCommon/Src/TextureDecoder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.cpp b/Source/Core/VideoCommon/Src/TextureDecoder.cpp index e10292ae3b..fa1998d148 100644 --- a/Source/Core/VideoCommon/Src/TextureDecoder.cpp +++ b/Source/Core/VideoCommon/Src/TextureDecoder.cpp @@ -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