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_22.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_22.asm')
| -rw-r--r-- | text/maps/route_22.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/text/maps/route_22.asm b/text/maps/route_22.asm index 25be0279..7222bc5e 100644 --- a/text/maps/route_22.asm +++ b/text/maps/route_22.asm @@ -1,4 +1,4 @@ -_UnnamedText_511ad: ; 922cd (24:62cd) +_UnnamedText_511ad:: ; 922cd (24:62cd) text $53, ": Hey!" line $52, "!" @@ -17,7 +17,7 @@ _UnnamedText_511ad: ; 922cd (24:62cd) cont "get any stronger?" done -_UnnamedText_511b2: ; 9236f (24:636f) +_UnnamedText_511b2:: ; 9236f (24:636f) text "I heard #MON" line "LEAGUE has many" cont "tough trainers!" @@ -31,13 +31,13 @@ _UnnamedText_511b2: ; 9236f (24:636f) cont "a move on!" done -_UnnamedText_511b7: ; 923f4 (24:63f4) +_UnnamedText_511b7:: ; 923f4 (24:63f4) text "Awww!" line "You just lucked" cont "out!" prompt -_UnnamedText_511bc: ; 92410 (24:6410) +_UnnamedText_511bc:: ; 92410 (24:6410) text $53, ": What?" line "Why do I have 2" cont "#MON?" @@ -46,7 +46,7 @@ _UnnamedText_511bc: ; 92410 (24:6410) cont "some more too!" prompt -_UnnamedText_511c1: ; 92450 (24:6450) +_UnnamedText_511c1:: ; 92450 (24:6450) text $53, ": What?" line $52, "! What a" cont "surprise to see" @@ -67,7 +67,7 @@ _UnnamedText_511c1: ; 92450 (24:6450) para "Come on!" done -_UnnamedText_511c6: ; 92506 (24:6506) +_UnnamedText_511c6:: ; 92506 (24:6506) text "That loosened me" line "up! I'm ready for" cont "#MON LEAGUE!" @@ -80,14 +80,14 @@ _UnnamedText_511c6: ; 92506 (24:6506) cont "here. Smell ya!" done -_UnnamedText_511cb: ; 92583 (24:6583) +_UnnamedText_511cb:: ; 92583 (24:6583) text "What!?" para "I was just" line "careless!" prompt -_UnnamedText_511d0: ; 925a0 (24:65a0) +_UnnamedText_511d0:: ; 925a0 (24:65a0) text $53, ": Hahaha!" line $52, "! That's" cont "your best? You're" @@ -98,7 +98,7 @@ _UnnamedText_511d0: ; 925a0 (24:65a0) line "more! You loser!" prompt -_Route22Text3: ; 92606 (24:6606) +_Route22Text3:: ; 92606 (24:6606) text "#MON LEAGUE" line "Front Gate" done |
