diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/rom4.c | 6 | ||||
-rw-r--r-- | src/scrcmd.c | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/rom4.c b/src/rom4.c index 75786eb33..244e94533 100644 --- a/src/rom4.c +++ b/src/rom4.c @@ -551,7 +551,7 @@ void sub_80538F0(u8 mapGroup, u8 mapNum) wild_pokemon_reroll(); prev_quest_postbuffer_cursor_backup_reset(); sub_8082BD0(mapGroup, mapNum); - DoDailyEvents(); + DoTimeBasedEvents(); sub_80806E4(); sub_8054164(); sub_8053C98(); @@ -585,7 +585,7 @@ void sub_8053994(u32 a1) prev_quest_postbuffer_cursor_backup_reset(); sub_8082BD0(gSaveBlock1.location.mapGroup, gSaveBlock1.location.mapNum); if (a1 != 1) - DoDailyEvents(); + DoTimeBasedEvents(); sub_80806E4(); sub_8054164(); if (v2) @@ -1287,7 +1287,7 @@ void CB2_ContinueSavedGame(void) sub_805338C(); sub_8053198(); sub_806451C(); - DoDailyEvents(); + DoTimeBasedEvents(); sub_805308C(); sub_8055FC0(); PlayTimeCounter_Start(); diff --git a/src/scrcmd.c b/src/scrcmd.c index 9acca98dc..c88a7499b 100644 --- a/src/scrcmd.c +++ b/src/scrcmd.c @@ -32,7 +32,7 @@ extern void sav12_xor_increment(u8); extern void sub_8081594(u8); extern void sub_8053CE4(u32); extern void fade_screen(u8, u8); -extern void DoDailyEvents(void); +extern void DoTimeBasedEvents(void); extern void sub_80806B4(u32); extern void sub_80806E4(void); extern void sub_808073C(void); @@ -708,7 +708,7 @@ bool8 ScrCmd_compareflags(struct ScriptContext *ctx) bool8 ScrCmd_checkdailyflags(struct ScriptContext *ctx) { - DoDailyEvents(); + DoTimeBasedEvents(); return FALSE; } |