diff options
author | Revo <projectrevotpp@hotmail.com> | 2021-03-21 01:03:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-21 01:03:04 -0400 |
commit | c4c114fd45f74764d07860bace7257c00478a477 (patch) | |
tree | 2e9eca18cda8c2c4afe4db01f26a6448fab22ffa /arm9/src/game_init.c | |
parent | a3f1dea5a8c95830cd767c6385c871b53a2d02f5 (diff) | |
parent | e2efdddfacd3c9453fda373d83e5078cd4f25a09 (diff) |
Merge branch 'master' into asmproc-relocations
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) |