diff options
| author | yenatch <yenatch@gmail.com> | 2014-01-27 16:22:41 -0500 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-01-27 16:24:13 -0500 |
| commit | 1b9ee46af9f8baac0d266a54130115a719788377 (patch) | |
| tree | 8ac61c0752dc74da0677cb26fe4db6362db5b2b7 /text/maps/rocket_hideout_b4f.asm | |
| parent | added a couple of new moves constants (diff) | |
| download | pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.tar.gz pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.tar.xz pokeyellow-1b9ee46af9f8baac0d266a54130115a719788377.zip | |
Get rid of globals.asm. Use ::s to export labels between objects.
globals.asm was a hack that:
- gave rgbasm an extra 100k lines to read
- increased reliance on the python preprocessor
- made the makefile a mess
- gave object creation an extra step
- wasn't even necessary
This speeds up build time by at least a third.
Diffstat (limited to 'text/maps/rocket_hideout_b4f.asm')
| -rw-r--r-- | text/maps/rocket_hideout_b4f.asm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/text/maps/rocket_hideout_b4f.asm b/text/maps/rocket_hideout_b4f.asm index d1ecf9cb..adbabe22 100644 --- a/text/maps/rocket_hideout_b4f.asm +++ b/text/maps/rocket_hideout_b4f.asm @@ -1,15 +1,15 @@ -_UnnamedText_4557a: ; 8223e (20:623e) +_UnnamedText_4557a:: ; 8223e (20:623e) text "So! I must say, I" line "am impressed you" cont "got here!" done -_UnnamedText_4557f: ; 8226c (20:626c) +_UnnamedText_4557f:: ; 8226c (20:626c) text "WHAT!" line "This cannot be!" prompt -_UnnamedText_45584: ; 82283 (20:6283) +_UnnamedText_45584:: ; 82283 (20:6283) text "I see that you" line "raise #MON" cont "with utmost care." @@ -26,49 +26,49 @@ _UnnamedText_45584: ; 82283 (20:6283) line "again..." done -_RocketHideout4BattleText2: ; 82326 (20:6326) +_RocketHideout4BattleText2:: ; 82326 (20:6326) text "I know you! You" line "ruined our plans" cont "at MT.MOON!" done -_RocketHideout4EndBattleText2: ; 82354 (20:6354) +_RocketHideout4EndBattleText2:: ; 82354 (20:6354) text "Burned" line "again!" prompt -_RocketHide4AfterBattleText2: ; 82363 (20:6363) +_RocketHide4AfterBattleText2:: ; 82363 (20:6363) text "Do you have" line "something against" cont "TEAM ROCKET?" done -_RocketHideout4BattleText3: ; 8238f (20:638f) +_RocketHideout4BattleText3:: ; 8238f (20:638f) text "How can you not" line "see the beauty of" cont "our evil?" done -_RocketHideout4EndBattleText3: ; 823bc (20:63bc) +_RocketHideout4EndBattleText3:: ; 823bc (20:63bc) text "Ayaya!" prompt -_RocketHide4AfterBattleText3: ; 823c4 (20:63c4) +_RocketHide4AfterBattleText3:: ; 823c4 (20:63c4) text "BOSS! I'm sorry I" line "failed you!" done -_RocketHideout4BattleText4: ; 823e2 (20:63e2) +_RocketHideout4BattleText4:: ; 823e2 (20:63e2) text "The elevator" line "doesn't work? Who" cont "has the LIFT KEY?" done -_RocketHideout4EndBattleText4: ; 82413 (20:6413) +_RocketHideout4EndBattleText4:: ; 82413 (20:6413) text "No!" prompt -_UnnamedText_455ec: ; 82418 (20:6418) +_UnnamedText_455ec:: ; 82418 (20:6418) text "Oh no! I dropped" line "the LIFT KEY!" done |
