From 6425294d0d20782e8280c20fdac78397faed81b2 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sun, 15 May 2016 08:00:07 -0700 Subject: ensure sound code buffer is aligned --- src/m4a_2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/m4a_2.c b/src/m4a_2.c index b41574c23..29f9bf910 100644 --- a/src/m4a_2.c +++ b/src/m4a_2.c @@ -2,7 +2,7 @@ #define BSS_CODE __attribute__((section(".bss.code"))) -BSS_CODE char SoundMainRAM_Buffer[0x800] = {0}; +BSS_CODE ALIGNED(4) char SoundMainRAM_Buffer[0x800] = {0}; IWRAM_DATA struct SoundInfo gSoundInfo = {0}; IWRAM_DATA struct PokemonCrySong gPokemonCrySongs[MAX_POKEMON_CRIES] = {0}; -- cgit v1.2.3