diff options
Diffstat (limited to 'src/GPU2D.h')
| -rw-r--r-- | src/GPU2D.h | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/GPU2D.h b/src/GPU2D.h index 21b43f1..57436c7 100644 --- a/src/GPU2D.h +++ b/src/GPU2D.h @@ -71,11 +71,11 @@ private:      bool Accelerated; -    u32 BGOBJLine[256*3]; +    u32 BGOBJLine[256*3] __attribute__((aligned (8)));      u32* _3DLine; -    u8 WindowMask[256]; -    u32 OBJLine[256]; +    u8 WindowMask[256] __attribute__((aligned (8))); +    u32 OBJLine[256] __attribute__((aligned (8)));      u16 DispFIFO[16];      u32 DispFIFOReadPtr; |