diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-08-31 13:31:51 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2020-08-31 13:31:51 -0400 |
commit | 22eb0e0d33053c87ca241f91edca47a5816a0c9e (patch) | |
tree | 166ee6b3cdc1fc88c7aec8cdab21e027730af263 /src | |
parent | 038abf80ba30a277420e0381312c0cfc2296811e (diff) |
Fix alignment in sFanfares
Diffstat (limited to 'src')
-rw-r--r-- | src/sound.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/sound.c b/src/sound.c index 69f796fca..b365e0ca7 100644 --- a/src/sound.c +++ b/src/sound.c @@ -37,18 +37,18 @@ extern struct ToneData gCryTable2[]; static const struct Fanfare sFanfares[] = { - { MUS_LEVEL_UP, 80 }, - { MUS_OBTAIN_ITEM, 160 }, - { MUS_EVOLVED, 220 }, - { MUS_OBTAIN_TMHM, 220 }, - { MUS_HEAL, 160 }, - { MUS_OBTAIN_BADGE, 340 }, + { MUS_LEVEL_UP, 80 }, + { MUS_OBTAIN_ITEM, 160 }, + { MUS_EVOLVED, 220 }, + { MUS_OBTAIN_TMHM, 220 }, + { MUS_HEAL, 160 }, + { MUS_OBTAIN_BADGE, 340 }, { MUS_MOVE_DELETED, 180 }, { MUS_OBTAIN_BERRY, 120 }, - { MUS_AWAKEN_LEGEND, 710 }, - { MUS_SLOTS_JACKPOT, 250 }, - { MUS_SLOTS_WIN, 150 }, - { MUS_TOO_BAD, 160 }, + { MUS_AWAKEN_LEGEND, 710 }, + { MUS_SLOTS_JACKPOT, 250 }, + { MUS_SLOTS_WIN, 150 }, + { MUS_TOO_BAD, 160 }, }; static void Task_Fanfare(u8 taskId); |