summaryrefslogtreecommitdiff
path: root/include/global.fieldmap.h
diff options
context:
space:
mode:
authorPhlosioneer <mattmdrr2@gmail.com>2019-02-26 22:56:22 -0500
committerhuderlem <huderlem@gmail.com>2019-02-28 22:21:16 -0600
commitda0687987d8d4f6cb9a331f30553ffb806e74165 (patch)
treeb85e2dea111aabaee3418efcf498ccfb2be206da /include/global.fieldmap.h
parent189d387f01104a715d788690fbc76d987ea3d6e1 (diff)
Pick better names for constants
Diffstat (limited to 'include/global.fieldmap.h')
-rw-r--r--include/global.fieldmap.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h
index 2b85a02d1..e35d900d8 100644
--- a/include/global.fieldmap.h
+++ b/include/global.fieldmap.h
@@ -1,12 +1,12 @@
#ifndef GUARD_GLOBAL_FIELDMAP_H
#define GUARD_GLOBAL_FIELDMAP_H
-#define MAP_IMPASSABLE_MASK 0x0C00
-#define MAP_METATILE_ID_MASK 0x03FF
-#define MAP_UNDEFINED_METATILE_ID 0x03FF
-#define MAP_TILE_ELEVATION_SHIFT 12
-#define MAP_IMPASSABLE_SHIFT 10
-#define MAP_TILE_ELEVATION_MASK 0xF000
+#define METATILE_COLLISION_MASK 0x0C00
+#define METATILE_ID_MASK 0x03FF
+#define METATILE_ID_UNDEFINED 0x03FF
+#define METATILE_ELEVATION_SHIFT 12
+#define METATILE_COLLISION_SHIFT 10
+#define METATILE_ELEVATION_MASK 0xF000
enum
{