From 1671917472cc705f4603170c064965c9cd2dd8fe Mon Sep 17 00:00:00 2001 From: "james.jdunne" Date: Thu, 6 Jan 2011 16:50:09 +0000 Subject: [PATCH] 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 --- Source/Core/VideoCommon/Src/TextureDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/TextureDecoder.cpp b/Source/Core/VideoCommon/Src/TextureDecoder.cpp index f3f647ef3d..83f22a527f 100644 --- a/Source/Core/VideoCommon/Src/TextureDecoder.cpp +++ b/Source/Core/VideoCommon/Src/TextureDecoder.cpp @@ -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];