summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Src/TextureDecoder.cpp
diff options
context:
space:
mode:
authorSonicadvance1 <sonicadvance1@gmail.com>2008-10-09 21:18:27 +0000
committerSonicadvance1 <sonicadvance1@gmail.com>2008-10-09 21:18:27 +0000
commitf7fa972a5083b2dcea4aa4e02fc381f9efe17871 (patch)
tree692fbc64293f171f9e3583678f13baffa10a24c9 /Source/Core/VideoCommon/Src/TextureDecoder.cpp
parent2521c52847921cc328d0670567f5099d53eec04f (diff)
Changed to checking for 32bit linux and I also missed a texture
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@816 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/VideoCommon/Src/TextureDecoder.cpp')
-rw-r--r--Source/Core/VideoCommon/Src/TextureDecoder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.cpp b/Source/Core/VideoCommon/Src/TextureDecoder.cpp
index 5d3f42662f..e19eb94d20 100644
--- a/Source/Core/VideoCommon/Src/TextureDecoder.cpp
+++ b/Source/Core/VideoCommon/Src/TextureDecoder.cpp
@@ -352,8 +352,8 @@ PC_TexFormat TexDecoder_Decode(u8 *dst, const u8 *src, int width, int height, in
return PC_TEX_FMT_BGRA32;
case GX_TF_I4:
{
-//Works in GCC 4.3 and above, possibly 4.2 and above
-#if (defined(_WIN32) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))
+//Works in GCC 4.3.2 and above, possibly 4.3.1 and above
+#if (defined(_WIN32) || (defined (_M_X64) && !defined(_WIN32)))
__m128i Lmask = _mm_set1_epi8 (0x0F);
__m128i Hmask = _mm_set1_epi8 (0xF0);
__m128i* sseSrc = (__m128i *)src;
@@ -425,7 +425,7 @@ PC_TexFormat TexDecoder_Decode(u8 *dst, const u8 *src, int width, int height, in
return PC_TEX_FMT_BGRA32;
case GX_TF_I8: // speed critical
{
-#ifdef _WIN32
+#if (defined(_WIN32) || (defined (_M_X64) && !defined(_WIN32)))
__m128i *sseSrc = (__m128i *)src;
__m128i *sseDst = (__m128i *)dst;
for (int y = 0; y < height; y += 4)