diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-02 13:06:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-02 13:06:18 -0400 |
commit | 677b4fc394516deab5b5c86c94a2a1443cb52151 (patch) | |
tree | 54887eeb9caa3b3c511af1f87931c3a5e2c3f10c /include/constants/metatile_behaviors.h | |
parent | a0b3d4df12f30442ea7d14d3e05f19327ad8f6ce (diff) | |
parent | 1b8d405b5e39de986954f8c3c7c3e15ea4a4967c (diff) |
Merge pull request #1396 from GriffinRichards/fix-guards
Add missing include guard suffixes
Diffstat (limited to 'include/constants/metatile_behaviors.h')
-rwxr-xr-x | include/constants/metatile_behaviors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/constants/metatile_behaviors.h b/include/constants/metatile_behaviors.h index 94cb0ffca..cc069c66c 100755 --- a/include/constants/metatile_behaviors.h +++ b/include/constants/metatile_behaviors.h @@ -1,5 +1,5 @@ -#ifndef GUARD_METATILE_BEHAVIORS -#define GUARD_METATILE_BEHAVIORS +#ifndef GUARD_METATILE_BEHAVIORS_H +#define GUARD_METATILE_BEHAVIORS_H #define MB_NORMAL 0x00 #define MB_SECRET_BASE_WALL 0x01 @@ -242,4 +242,4 @@ #define MB_UNUSED_EE 0xEE #define MB_UNUSED_EF 0xEF -#endif // GUARD_METATILE_BEHAVIORS +#endif // GUARD_METATILE_BEHAVIORS_H |