diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-05-30 18:06:33 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-05-30 18:18:37 -0500 |
commit | 244f1af5708f66e215f716f41246f4d6e80cc92f (patch) | |
tree | 2ae8669414810f69f421753dc3924b419c4dea49 /src/berry_blender.c | |
parent | ed3367f9f60bf5e0ae9bf6367b903609b76afbe4 (diff) |
Fix rotating_gate nonmatching function
Diffstat (limited to 'src/berry_blender.c')
-rw-r--r-- | src/berry_blender.c | 55 |
1 files changed, 15 insertions, 40 deletions
diff --git a/src/berry_blender.c b/src/berry_blender.c index b8df29ec6..50c9aa700 100644 --- a/src/berry_blender.c +++ b/src/berry_blender.c @@ -1,52 +1,27 @@ #include "global.h" +#include "berry.h" #include "decompress.h" -#include "palette.h" #include "event_data.h" +#include "ewram.h" +#include "item.h" +#include "link.h" +#include "m4a.h" #include "main.h" -#include "text_window.h" #include "menu.h" -#include "strings2.h" -#include "sound.h" -#include "constants/songs.h" -#include "berry.h" -#include "string_util.h" -#include "link.h" -#include "task.h" +#include "menu_cursor.h" #include "overworld.h" -#include "item.h" -#include "constants/items.h" +#include "palette.h" +#include "pokeblock.h" #include "random.h" #include "save.h" -#include "menu_cursor.h" +#include "sound.h" +#include "string_util.h" +#include "strings2.h" +#include "task.h" +#include "text_window.h" #include "trig.h" -#include "pokeblock.h" -#include "ewram.h" - -//needed to match Blender_ControlHitPitch -struct MusicPlayerInfo -{ - struct SongHeader *songHeader; - u32 status; - u8 trackCount; - u8 priority; - u8 cmd; - u8 unk_B; - u32 clock; - u8 gap[8]; - u8 *memAccArea; - u16 tempoD; - u16 tempoU; - u16 tempoI; - u16 tempoC; - u16 fadeOI; - u16 fadeOC; - u16 fadeOV; - struct MusicPlayerTrack *tracks; - struct ToneData *tone; - u32 ident; - u32 func; - u32 intp; -}; +#include "constants/songs.h" +#include "constants/items.h" #define BLENDER_SCORE_BEST 0 #define BLENDER_SCORE_GOOD 1 |