diff options
author | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-03-18 20:03:46 +0100 |
---|---|---|
committer | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-03-18 20:03:46 +0100 |
commit | 6f8f78f701185bf65d962e46ab62d4a0457c53d9 (patch) | |
tree | 2b72d712fc508a8bb22d5bd879b403f4147e06e4 /arm9/src/game_init.c | |
parent | dc241048eeac3cb560f621658dafc107226722fd (diff) |
finish heap.c
Diffstat (limited to 'arm9/src/game_init.c')
-rw-r--r-- | arm9/src/game_init.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arm9/src/game_init.c b/arm9/src/game_init.c index 327c66c6..a7508fab 100644 --- a/arm9/src/game_init.c +++ b/arm9/src/game_init.c @@ -4,16 +4,15 @@ #include "main.h" #include "FS_rom.h" #include "PAD_pad.h" -#include "heap.h" #include "MWC_string.h" #include "tp.h" #include "unk_0201B4E8.h" #include "game_init.h" #include "registers.h" +#include "heap.h" #pragma thumb on -extern void FUN_020166C8(const u32 (*)[2], int, int, int); extern void FUN_02022450(void); typedef volatile struct @@ -142,7 +141,7 @@ void FUN_02015FC8(void) { csum++; } - FUN_020166C8(UNK_020EDB10, 4, 92, (int)csum); + FUN_020166C8((u32 *)UNK_020EDB10, 4, 92, (int)csum); } void InitSystemForTheGame(void) |