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_23.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_23.asm')
| -rw-r--r-- | text/maps/route_23.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/text/maps/route_23.asm b/text/maps/route_23.asm index 8d341d57..7b6219a8 100644 --- a/text/maps/route_23.asm +++ b/text/maps/route_23.asm @@ -1,4 +1,4 @@ -_VictoryRoadGuardText1: ; 9261e (24:661e) +_VictoryRoadGuardText1:: ; 9261e (24:661e) text "You can pass here" line "only if you have" cont "the @" @@ -14,7 +14,7 @@ _VictoryRoadGuardText1: ; 9261e (24:661e) line "it to get to" cont "#MON LEAGUE!@@" -_VictoryRoadGuardText2: ; 92696 (24:6696) +_VictoryRoadGuardText2:: ; 92696 (24:6696) text "You can pass here" line "only if you have" cont "the @" @@ -26,13 +26,13 @@ _VictoryRoadGuardText2: ; 92696 (24:6696) TX_RAM $cd6d text "!@@" -_UnnamedText_513a3: ; 926dd (24:66dd) +_UnnamedText_513a3:: ; 926dd (24:66dd) db $0 para "OK then! Please," line "go right ahead!" done -_Route23Text8: ; 92700 (24:6700) +_Route23Text8:: ; 92700 (24:6700) text "VICTORY ROAD GATE" line "- #MON LEAGUE" done |
