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_16_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_16_gate.asm')
| -rw-r--r-- | text/maps/route_16_gate.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/text/maps/route_16_gate.asm b/text/maps/route_16_gate.asm index 22eb90c6..b83bbf50 100644 --- a/text/maps/route_16_gate.asm +++ b/text/maps/route_16_gate.asm @@ -1,22 +1,22 @@ -_UnnamedText_49777: ; 8cca0 (23:4ca0) +_UnnamedText_49777:: ; 8cca0 (23:4ca0) text "No pedestrians" line "are allowed on" cont "CYCLING ROAD!" done -_UnnamedText_4977c: ; 8cccd (23:4ccd) +_UnnamedText_4977c:: ; 8cccd (23:4ccd) text "CYCLING ROAD is a" line "downhill course" cont "by the sea. It's" cont "a great ride." done -_UnnamedText_49781: ; 8cd0e (23:4d0e) +_UnnamedText_49781:: ; 8cd0e (23:4d0e) text "Excuse me! Wait" line "up please!" done -_Route16GateMapText2: ; 8cd2a (23:4d2a) +_Route16GateMapText2:: ; 8cd2a (23:4d2a) text "How'd you get in?" line "Good effort!" done |
