diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2020-03-10 23:13:27 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2020-04-28 19:59:08 -0500 |
commit | b1d26e10a829a2a1526754b88167485df7e2511f (patch) | |
tree | c7bc3138a1f0a131a713457e4905ebc71c10b677 /include/global.fieldmap.h | |
parent | 724ffe14ee2be59a34dc6a397f6579cc0d820cff (diff) |
Sync map header property names with pokefirered
Diffstat (limited to 'include/global.fieldmap.h')
-rw-r--r-- | include/global.fieldmap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h index 2e451a368..837d5da00 100644 --- a/include/global.fieldmap.h +++ b/include/global.fieldmap.h @@ -144,9 +144,9 @@ struct MapHeader }; // Flags for gMapHeader.flags, as defined in the map_header_flags macro -#define MAP_ALLOW_BIKE (1 << 0) -#define MAP_ALLOW_ESCAPE_ROPE (1 << 1) -#define MAP_ALLOW_RUN (1 << 2) +#define MAP_ALLOW_CYCLING (1 << 0) +#define MAP_ALLOW_ESCAPING (1 << 1) // Escape Rope and Dig +#define MAP_ALLOW_RUNNING (1 << 2) #define MAP_SHOW_MAP_NAME (1 << 3) #define UNUSED_MAP_FLAGS (1 << 4 | 1 << 5 | 1 << 6 | 1 << 7) |