From 98c7993a8ab54fd1206d28c3e27d4405938fa686 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sun, 14 Feb 2010 02:31:42 +0000 Subject: [PATCH] re-add alignment for dspbuffer in DSPSpy...turns out it's needed :) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@5054 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/DSPSpy/main_spy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DSPSpy/main_spy.cpp b/Source/DSPSpy/main_spy.cpp index 9bf99d795a..ad0b6d0c64 100644 --- a/Source/DSPSpy/main_spy.cpp +++ b/Source/DSPSpy/main_spy.cpp @@ -63,7 +63,7 @@ // #include "virtual_dsp.h" // Used for communications with the DSP, such as dumping registers etc. -u16 dspbuffer[16 * 1024]; +u16 dspbuffer[16 * 1024] __attribute__ ((aligned (0x4000))); static void *xfb = NULL; void (*reboot)() = (void(*)())0x80001800;