diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-19 12:39:11 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2022-01-19 12:39:11 -0500 |
commit | e682c12519377741bc55fa55c6b9deb963614ed6 (patch) | |
tree | f6f22082fe4fb9cc8c44b04437a071f8b6c2c909 /include | |
parent | e3b49604d4d8981c9fa599cbc23874ac61036c9e (diff) |
sTileBitAttributes to sparse array, rename MB_UNNUSED_CAVE
Diffstat (limited to 'include')
-rwxr-xr-x | include/constants/metatile_behaviors.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/constants/metatile_behaviors.h b/include/constants/metatile_behaviors.h index 1c3d33c00..97ba01a63 100755 --- a/include/constants/metatile_behaviors.h +++ b/include/constants/metatile_behaviors.h @@ -9,7 +9,7 @@ #define MB_UNUSED_05 0x05 #define MB_DEEP_SAND 0x06 #define MB_SHORT_GRASS 0x07 -#define MB_UNUSED_CAVE 0x08 +#define MB_CAVE 0x08 #define MB_LONG_GRASS_SOUTH_EDGE 0x09 #define MB_NO_RUNNING 0x0A #define MB_INDOOR_ENCOUNTER 0x0B @@ -241,6 +241,9 @@ #define MB_UNUSED_ED 0xED #define MB_UNUSED_EE 0xEE #define MB_UNUSED_EF 0xEF + +#define NUM_METATILE_BEHAVIORS 0xF0 + #define MB_INVALID 0xFF #endif // GUARD_METATILE_BEHAVIORS_H |