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/route_2_gate.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/route_2_gate.asm')
| -rw-r--r-- | text/maps/route_2_gate.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/text/maps/route_2_gate.asm b/text/maps/route_2_gate.asm index 4abc4a09..6c2ba168 100644 --- a/text/maps/route_2_gate.asm +++ b/text/maps/route_2_gate.asm @@ -1,10 +1,10 @@ -_UnnamedText_5d616: ; 8a7fc (22:67fc) +_UnnamedText_5d616:: ; 8a7fc (22:67fc) text "The HM FLASH" line "lights even the" cont "darkest dungeons." done -_Route2GateText2: ; 8a82c (22:682c) +_Route2GateText2:: ; 8a82c (22:682c) text "Once a #MON" line "learns FLASH, you" cont "can get through" |
