diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-02 12:54:40 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-04-02 12:54:40 -0400 |
commit | 1b8d405b5e39de986954f8c3c7c3e15ea4a4967c (patch) | |
tree | 54887eeb9caa3b3c511af1f87931c3a5e2c3f10c /include/battle_gfx_sfx_util.h | |
parent | a0b3d4df12f30442ea7d14d3e05f19327ad8f6ce (diff) |
Add missing include guard suffixes
Diffstat (limited to 'include/battle_gfx_sfx_util.h')
-rw-r--r-- | include/battle_gfx_sfx_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/battle_gfx_sfx_util.h b/include/battle_gfx_sfx_util.h index e3f549aa9..3288204d1 100644 --- a/include/battle_gfx_sfx_util.h +++ b/include/battle_gfx_sfx_util.h @@ -1,5 +1,5 @@ -#ifndef GUARD_BATTLE_GFX_SFX_UTIL -#define GUARD_BATTLE_GFX_SFX_UTIL +#ifndef GUARD_BATTLE_GFX_SFX_UTIL_H +#define GUARD_BATTLE_GFX_SFX_UTIL_H void AllocateBattleSpritesData(void); void FreeBattleSpritesData(void); @@ -45,4 +45,4 @@ void AllocateMonSpritesGfx(void); void FreeMonSpritesGfx(void); bool32 ShouldPlayNormalMonCry(struct Pokemon *mon); -#endif // GUARD_BATTLE_GFX_SFX_UTIL +#endif // GUARD_BATTLE_GFX_SFX_UTIL_H |