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/lance.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/lance.asm')
| -rw-r--r-- | text/maps/lance.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/text/maps/lance.asm b/text/maps/lance.asm index f0ab490c..1da4e8f1 100644 --- a/text/maps/lance.asm +++ b/text/maps/lance.asm @@ -1,4 +1,4 @@ -_LanceBeforeBattleText: ; 85d3c (21:5d3c) +_LanceBeforeBattleText:: ; 85d3c (21:5d3c) text "Ah! I heard about" line "you ", $52, "!" @@ -27,7 +27,7 @@ _LanceBeforeBattleText: ; 85d3c (21:5d3c) cont "with me, ", $52, "!" done -_LanceEndBattleText: ; 85e64 (21:5e64) +_LanceEndBattleText:: ; 85e64 (21:5e64) text "That's it!" para "I hate to admit" @@ -35,7 +35,7 @@ _LanceEndBattleText: ; 85e64 (21:5e64) cont "#MON master!" prompt -_LanceAfterBattleText: ; 85e9e (21:5e9e) +_LanceAfterBattleText:: ; 85e9e (21:5e9e) text "I still can't" line "believe my" cont "dragons lost to" |
