diff options
author | Thomas <doodrabbit@hotmail.com> | 2021-12-17 20:57:03 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-17 20:57:03 -0500 |
commit | af67eaffa7ab1a347a6f0e59ed7f1e107749d15a (patch) | |
tree | b9f90f7b047b3dc5a411dbf65117bf07b237a37d /arm9/src/main.c | |
parent | 3ab18655ca1311019212b3a2a9dbe32e5fbee55d (diff) | |
parent | 44cd7753b5dde323d1e8274b2dc8a5599729e83f (diff) |
Real-match math_util.c
Diffstat (limited to 'arm9/src/main.c')
-rw-r--r-- | arm9/src/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arm9/src/main.c b/arm9/src/main.c index 3b3b0dd6..2930e801 100644 --- a/arm9/src/main.c +++ b/arm9/src/main.c @@ -33,10 +33,10 @@ struct UnkStruct_02016FA8 UNK_02016FA8; extern void FUN_02022294(void); extern void GF_InitRTCWork(void); extern int FUN_020337E8(int); -extern void FUN_02015E30(void); +extern void PlayTimerInit(void); extern void FUN_0201B5CC(void *); extern void GF_RTC_UpdateOnFrame(void); -extern void FUN_02015E60(void); +extern void PlayTimerUpdate(void); extern void FUN_020222C4(void); extern void FUN_0200E2D8(void); @@ -97,7 +97,7 @@ THUMB_FUNC void NitroMain(void) gMain.unk30 = 0; InitializeMainRNG(); InitAllScreenBrightnessData(); - FUN_02015E30(); + PlayTimerInit(); UNK_02016FA4 = 0; for (;;) { @@ -120,7 +120,7 @@ THUMB_FUNC void NitroMain(void) } } GF_RTC_UpdateOnFrame(); - FUN_02015E60(); + PlayTimerUpdate(); FUN_020222C4(); FUN_0201B5CC(gMain.unk24); OS_WaitIrq(1, 1); |