Missed one MSVC-ism. Should fix build for Linux. Last revision should still work for Windows. No functionality changes this time.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6762 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
james.jdunne 2011-01-06 16:50:09 +00:00
parent 2841d67ce3
commit 1671917472

View file

@ -1739,7 +1739,7 @@ PC_TexFormat TexDecoder_Decode_RGBA(u32 * dst, const u8 * src, int width, int he
const __m128i dxt = _mm_loadu_si128((__m128i *)src);
// Copy the 2-bit indices from each DXT block:
__declspec(align(16)) u32 dxttmp[4];
GC_ALIGNED16( u32 dxttmp[4] );
_mm_store_si128((__m128i *)dxttmp, dxt);
u32 dxt0sel = dxttmp[1];