diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-22 19:10:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-22 19:10:49 -0500 |
commit | e0fae879da1b773bf90fca145e047ccdb7613938 (patch) | |
tree | b1be0ec73e33fccf2fe2deac44d62aa10ae391e4 /include/overworld.h | |
parent | 5cb875b6cb798cf890e156f54a150ff90735ddab (diff) | |
parent | 42a83ee50e3364f3f7361dacb3d3616053f4c5bf (diff) |
Merge pull request #1558 from GriffinRichards/update-macros
Update event macro comments
Diffstat (limited to 'include/overworld.h')
-rw-r--r-- | include/overworld.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/overworld.h b/include/overworld.h index e1cf100db..04b61f7fd 100644 --- a/include/overworld.h +++ b/include/overworld.h @@ -67,8 +67,8 @@ void SetGameStat(u8 index, u32 value); void ApplyNewEncryptionKeyToGameStats(u32 newKey); void LoadObjEventTemplatesFromHeader(void); void LoadSaveblockObjEventScripts(void); -void Overworld_SetObjEventTemplateCoords(u8 localId, s16 x, s16 y); -void Overworld_SetObjEventTemplateMovementType(u8 localId, u8 movementType); +void SetObjEventTemplateCoords(u8 localId, s16 x, s16 y); +void SetObjEventTemplateMovementType(u8 localId, u8 movementType); const struct MapLayout *GetMapLayout(void); void ApplyCurrentWarp(void); struct MapHeader const *const Overworld_GetMapHeaderByGroupAndId(u16 mapGroup, u16 mapNum); @@ -98,8 +98,8 @@ void ResetInitialPlayerAvatarState(void); void StoreInitialPlayerAvatarState(void); bool32 Overworld_IsBikingAllowed(void); void SetDefaultFlashLevel(void); -void Overworld_SetFlashLevel(s32 flashLevel); -u8 Overworld_GetFlashLevel(void); +void SetFlashLevel(s32 flashLevel); +u8 GetFlashLevel(void); void SetCurrentMapLayout(u16 mapLayoutId); void SetObjectEventLoadFlag(u8 var); u16 GetLocationMusic(struct WarpData *warp); |