From b452726f9acc5a0923b80d43e74b1d372dfb393c Mon Sep 17 00:00:00 2001 From: yenatch Date: Wed, 22 Jan 2014 13:33:58 -0500 Subject: [PATCH] rename existing map text files and put them in text/maps/ --- main.asm | 6 +++--- text/{mapBluesHouse.asm => maps/blues_house.asm} | 0 text/{mapPalletTown.asm => maps/pallet_town.asm} | 0 text/{mapRedsHouse1F.asm => maps/reds_house_1f.asm} | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename text/{mapBluesHouse.asm => maps/blues_house.asm} (100%) rename text/{mapPalletTown.asm => maps/pallet_town.asm} (100%) rename text/{mapRedsHouse1F.asm => maps/reds_house_1f.asm} (100%) diff --git a/main.asm b/main.asm index 21809838..b18f5884 100644 --- a/main.asm +++ b/main.asm @@ -124722,8 +124722,8 @@ _TradeCenterMText1: ; 94b04 (25:4b04) text "!" done -INCLUDE "text/mapRedsHouse1F.asm" -INCLUDE "text/mapBluesHouse.asm" +INCLUDE "text/maps/reds_house_1f.asm" +INCLUDE "text/maps/blues_house.asm" _OaksLabGaryText1: ; 94d5b (25:4d5b) text $53, ": Yo" @@ -130280,7 +130280,7 @@ _UnnamedText_4fe44: ; a41d6 (29:41d6) line "a #MON CENTER!" done -INCLUDE "text/mapPalletTown.asm" +INCLUDE "text/maps/pallet_town.asm" _ViridianCityText1: ; a43cc (29:43cc) text "Those # BALLs" diff --git a/text/mapBluesHouse.asm b/text/maps/blues_house.asm similarity index 100% rename from text/mapBluesHouse.asm rename to text/maps/blues_house.asm diff --git a/text/mapPalletTown.asm b/text/maps/pallet_town.asm similarity index 100% rename from text/mapPalletTown.asm rename to text/maps/pallet_town.asm diff --git a/text/mapRedsHouse1F.asm b/text/maps/reds_house_1f.asm similarity index 100% rename from text/mapRedsHouse1F.asm rename to text/maps/reds_house_1f.asm