summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2022-01-20 23:26:39 -0500
committerGriffinR <griffin.g.richards@gmail.com>2022-01-20 23:26:39 -0500
commitfb81d9ad4a19b7d653e44787e5647bda794757fd (patch)
tree8cd9e1154c066c222ba7e9ff1cb151623bd4ebc2
parentc4f33f2b2bbddaafff817721d9266273ee619162 (diff)
Correct map data comment
-rw-r--r--include/global.fieldmap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.fieldmap.h b/include/global.fieldmap.h
index 46450ed44..21c354658 100644
--- a/include/global.fieldmap.h
+++ b/include/global.fieldmap.h
@@ -3,7 +3,7 @@
// Masks/shifts for blocks in the map grid
// Map grid blocks consist of a 10 bit metatile id, a 2 bit collision value, and a 4 bit elevation value
-// This is the data stored in each data/layouts/*/map.bin and border.bin file
+// This is the data stored in each data/layouts/*/map.bin file
#define MAPGRID_METATILE_ID_MASK 0x03FF // Bits 1-10
#define MAPGRID_COLLISION_MASK 0x0C00 // Bits 11-12
#define MAPGRID_ELEVATION_MASK 0xF000 // Bits 13-16