diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-10-01 18:30:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-01 18:30:55 -0400 |
commit | 6eaeceb3ef1ebbacce3872ae91da301f7ba946b2 (patch) | |
tree | 952c7df3f35be35003de8758db3ab35f8c8b007a /include/global.fieldmap.h | |
parent | 1f7eb7ea010bede43d07e14b4ff21c609eaeb4ea (diff) | |
parent | 1460774d1d8e409ccc7a28a85cf7dd3a17fd985a (diff) |
Merge pull request #467 from GriffinRichards/sync-fieldmap
Sync fieldmap.c
Diffstat (limited to 'include/global.fieldmap.h')
-rw-r--r-- | include/global.fieldmap.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index 7544fe418..c57146445 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -3,6 +3,7 @@ #define OBJECT_EVENTS_COUNT 16 +#define METATILE_BEHAVIOR_MASK 0x00FF #define METATILE_COLLISION_MASK 0x0C00 #define METATILE_ID_MASK 0x03FF #define METATILE_ID_UNDEFINED 0x03FF @@ -42,7 +43,9 @@ enum enum { - CONNECTION_SOUTH = 1, + CONNECTION_INVALID = -1, + CONNECTION_NONE, + CONNECTION_SOUTH, CONNECTION_NORTH, CONNECTION_WEST, CONNECTION_EAST, |