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
This commit is contained in:
Sonicadvance1 2008-10-09 21:18:27 +00:00
parent 2521c52847
commit f7fa972a50
1 changed files with 3 additions and 3 deletions

View File

@ -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)