From e0b4cbcdaed4e82295a589e0d00d03b2d9c7272c Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Thu, 1 Apr 2010 10:06:43 +0000 Subject: [PATCH] Another one bites the dust git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5263 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp b/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp index f454b3b0ce..ac90813c14 100644 --- a/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp +++ b/Source/Core/VideoCommon/Src/OpenCL/OCLTextureDecoder.cpp @@ -165,6 +165,9 @@ PC_TexFormat TexDecoder_Decode_OpenCL(u8 *dst, const u8 *src, int width, int hei formatResult = PC_TEX_FMT_RGB565; break; case GX_TF_RGB5A3: + // Doesn't decode correctly + // See Sonic Adventure 2: Battle opening sequence + return PC_TEX_FMT_NONE; kernelToRun = Decoders[6].kernel; sizeOfSrc = sizeof(u16); sizeOfDst = sizeof(u32);