Add missing include guard suffixes
This commit is contained in:
parent
a0b3d4df12
commit
1b8d405b5e
7 changed files with 21 additions and 21 deletions
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_GBA_DEFINES
|
#ifndef GUARD_GBA_DEFINES_H
|
||||||
#define GUARD_GBA_DEFINES
|
#define GUARD_GBA_DEFINES_H
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
@ -84,4 +84,4 @@
|
||||||
#define RGB_CYAN RGB(0, 31, 31)
|
#define RGB_CYAN RGB(0, 31, 31)
|
||||||
#define RGB_WHITEALPHA (RGB_WHITE | 0x8000)
|
#define RGB_WHITEALPHA (RGB_WHITE | 0x8000)
|
||||||
|
|
||||||
#endif // GUARD_GBA_DEFINES
|
#endif // GUARD_GBA_DEFINES_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_BATTLE_GFX_SFX_UTIL
|
#ifndef GUARD_BATTLE_GFX_SFX_UTIL_H
|
||||||
#define GUARD_BATTLE_GFX_SFX_UTIL
|
#define GUARD_BATTLE_GFX_SFX_UTIL_H
|
||||||
|
|
||||||
void AllocateBattleSpritesData(void);
|
void AllocateBattleSpritesData(void);
|
||||||
void FreeBattleSpritesData(void);
|
void FreeBattleSpritesData(void);
|
||||||
|
@ -45,4 +45,4 @@ void AllocateMonSpritesGfx(void);
|
||||||
void FreeMonSpritesGfx(void);
|
void FreeMonSpritesGfx(void);
|
||||||
bool32 ShouldPlayNormalMonCry(struct Pokemon *mon);
|
bool32 ShouldPlayNormalMonCry(struct Pokemon *mon);
|
||||||
|
|
||||||
#endif // GUARD_BATTLE_GFX_SFX_UTIL
|
#endif // GUARD_BATTLE_GFX_SFX_UTIL_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_METATILE_BEHAVIORS
|
#ifndef GUARD_METATILE_BEHAVIORS_H
|
||||||
#define GUARD_METATILE_BEHAVIORS
|
#define GUARD_METATILE_BEHAVIORS_H
|
||||||
|
|
||||||
#define MB_NORMAL 0x00
|
#define MB_NORMAL 0x00
|
||||||
#define MB_SECRET_BASE_WALL 0x01
|
#define MB_SECRET_BASE_WALL 0x01
|
||||||
|
@ -242,4 +242,4 @@
|
||||||
#define MB_UNUSED_EE 0xEE
|
#define MB_UNUSED_EE 0xEE
|
||||||
#define MB_UNUSED_EF 0xEF
|
#define MB_UNUSED_EF 0xEF
|
||||||
|
|
||||||
#endif // GUARD_METATILE_BEHAVIORS
|
#endif // GUARD_METATILE_BEHAVIORS_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_GBA_DEFINES
|
#ifndef GUARD_GBA_DEFINES_H
|
||||||
#define GUARD_GBA_DEFINES
|
#define GUARD_GBA_DEFINES_H
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
|
@ -76,4 +76,4 @@
|
||||||
|
|
||||||
#define TOTAL_OBJ_TILE_COUNT 1024
|
#define TOTAL_OBJ_TILE_COUNT 1024
|
||||||
|
|
||||||
#endif // GUARD_GBA_DEFINES
|
#endif // GUARD_GBA_DEFINES_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_ITEM_MENU_ICONS
|
#ifndef GUARD_ITEM_MENU_ICONS_H
|
||||||
#define GUARD_ITEM_MENU_ICONS
|
#define GUARD_ITEM_MENU_ICONS_H
|
||||||
|
|
||||||
extern const struct CompressedSpriteSheet gBagMaleSpriteSheet;
|
extern const struct CompressedSpriteSheet gBagMaleSpriteSheet;
|
||||||
extern const struct CompressedSpriteSheet gBagFemaleSpriteSheet;
|
extern const struct CompressedSpriteSheet gBagFemaleSpriteSheet;
|
||||||
|
@ -28,4 +28,4 @@ u8 CreateBerryFlavorCircleSprite(s16 x);
|
||||||
#define TAG_BERRY_PIC_TILE 0xFFFF
|
#define TAG_BERRY_PIC_TILE 0xFFFF
|
||||||
#define TAG_BERRY_PIC_PAL 0x7544
|
#define TAG_BERRY_PIC_PAL 0x7544
|
||||||
|
|
||||||
#endif // GUARD_ITEM_MENU_ICONS
|
#endif // GUARD_ITEM_MENU_ICONS_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_METATILE_BEHAVIOR
|
#ifndef GUARD_METATILE_BEHAVIOR_H
|
||||||
#define GUARD_METATILE_BEHAVIOR
|
#define GUARD_METATILE_BEHAVIOR_H
|
||||||
|
|
||||||
bool8 MetatileBehavior_IsATile(u8);
|
bool8 MetatileBehavior_IsATile(u8);
|
||||||
bool8 MetatileBehavior_IsEncounterTile(u8);
|
bool8 MetatileBehavior_IsEncounterTile(u8);
|
||||||
|
@ -146,4 +146,4 @@ bool8 MetatileBehavior_IsLongGrass_Duplicate(u8);
|
||||||
bool8 MetatileBehavior_IsLongGrassSouthEdge(u8);
|
bool8 MetatileBehavior_IsLongGrassSouthEdge(u8);
|
||||||
bool8 MetatileBehavior_IsTrainerHillTimer(u8);
|
bool8 MetatileBehavior_IsTrainerHillTimer(u8);
|
||||||
|
|
||||||
#endif // GUARD_METATILE_BEHAVIOR
|
#endif // GUARD_METATILE_BEHAVIOR_H
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef GUARD_SCRIPT_POKEMON_UTIL
|
#ifndef GUARD_SCRIPT_POKEMON_UTIL_H
|
||||||
#define GUARD_SCRIPT_POKEMON_UTIL
|
#define GUARD_SCRIPT_POKEMON_UTIL_H
|
||||||
|
|
||||||
u8 ScriptGiveMon(u16, u8, u16, u32, u32, u8);
|
u8 ScriptGiveMon(u16, u8, u16, u32, u32, u8);
|
||||||
u8 ScriptGiveEgg(u16);
|
u8 ScriptGiveEgg(u16);
|
||||||
|
@ -8,4 +8,4 @@ void ScriptSetMonMoveSlot(u8, u16, u8);
|
||||||
void ReducePlayerPartyToSelectedMons(void);
|
void ReducePlayerPartyToSelectedMons(void);
|
||||||
void HealPlayerParty(void);
|
void HealPlayerParty(void);
|
||||||
|
|
||||||
#endif // GUARD_SCRIPT_POKEMON_UTIL
|
#endif // GUARD_SCRIPT_POKEMON_UTIL_H
|
||||||
|
|
Loading…
Reference in a new issue