diff options
| author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-17 00:00:43 -0500 |
|---|---|---|
| committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-17 00:00:43 -0500 |
| commit | e2ac753da178063877a06f1cd577888a5337d6e8 (patch) | |
| tree | 7c8a5e5a3f7704f66a35b8c7f614b2ed0615416e /data | |
| parent | 3dcc0066a5814b8c24e167fd59d2dfcd5413c9c5 (diff) | |
No redundant filename prefixes
Diffstat (limited to 'data')
| -rw-r--r-- | data/maps/data.asm (renamed from data/maps/map_data.asm) | 0 | ||||
| -rw-r--r-- | data/maps/definitions.asm (renamed from data/maps/map_defs.asm) | 2 | ||||
| -rw-r--r-- | data/maps/maps.asm | 4 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/maps/map_data.asm b/data/maps/data.asm index 0cdfb0826..0cdfb0826 100644 --- a/data/maps/map_data.asm +++ b/data/maps/data.asm diff --git a/data/maps/map_defs.asm b/data/maps/definitions.asm index d11071a35..fd8ad3a33 100644 --- a/data/maps/map_defs.asm +++ b/data/maps/definitions.asm @@ -1,5 +1,5 @@ map_def: MACRO -;\1: map name: for the MapData pointer (see data/maps/map_data.asm) +;\1: map name: for the MapData pointer (see data/maps/data.asm) ;\2: tileset: a TILESET_* constant ;\3: environment: TOWN, ROUTE, INDOOR, CAVE, ENVIRONMENT_5, GATE, or DUNGEON ;\4: location: from constants/landmark_constants.asm diff --git a/data/maps/maps.asm b/data/maps/maps.asm index 2855c4a96..56958ccfc 100644 --- a/data/maps/maps.asm +++ b/data/maps/maps.asm @@ -3,8 +3,8 @@ INCLUDE "constants.asm" SECTION "Maps", ROMX -INCLUDE "data/maps/map_defs.asm" -INCLUDE "data/maps/map_data.asm" +INCLUDE "data/maps/definitions.asm" +INCLUDE "data/maps/data.asm" INCLUDE "data/maps/blocks.asm" |
