From d4c9a8a5fc15a1946fa6420f8ec77996ad94fe79 Mon Sep 17 00:00:00 2001 From: hyperiris Date: Sat, 7 Feb 2009 16:40:19 +0000 Subject: [PATCH] fix compile warning: 'unsigned char * GPFifo::m_gatherPipe' has different alignment in JitAsm.cpp and GPFifo.cpp: 1 and 32 git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2132 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Core/Src/HW/GPFifo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/HW/GPFifo.h b/Source/Core/Core/Src/HW/GPFifo.h index a3d85e4074..248c941fdc 100644 --- a/Source/Core/Core/Src/HW/GPFifo.h +++ b/Source/Core/Core/Src/HW/GPFifo.h @@ -29,7 +29,7 @@ enum GATHER_PIPE_SIZE = 32 }; -extern u8 m_gatherPipe[GATHER_PIPE_SIZE*16]; //more room, for the fastmodes +extern u8 GC_ALIGNED32(m_gatherPipe[GATHER_PIPE_SIZE*16]); //more room, for the fastmodes // pipe counter extern u32 m_gatherPipeCount;