diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-09-20 16:01:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-20 16:01:29 -0400 |
| commit | 0688c8c43a3db800a7af4b69a2efea229cf31ec5 (patch) | |
| tree | a08cd946f4b421f2d25e246df3d6d3375dc5ea05 /maps/Route1Gate1F.asm | |
| parent | e789ee48b65e8cc08104ef06de4b08c9ef9d117d (diff) | |
| parent | 8900eb7ad06931b78dcb91e0c2e7db583090aa06 (diff) | |
Merge pull request #72 from jd-0/master
Remove address comments
Diffstat (limited to 'maps/Route1Gate1F.asm')
| -rw-r--r-- | maps/Route1Gate1F.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/maps/Route1Gate1F.asm b/maps/Route1Gate1F.asm index dcc6f1f..9aca3ce 100644 --- a/maps/Route1Gate1F.asm +++ b/maps/Route1Gate1F.asm @@ -2,7 +2,7 @@ include "constants.asm" SECTION "maps/Route1Gate1F.asm", ROMX -Route1Gate1FScriptLoader:: ;4061 +Route1Gate1FScriptLoader:: ld hl, Route1Gate1FScriptPointers call RunMapScript call WriteBackMapScriptNumber @@ -12,39 +12,39 @@ Route1Gate1FScriptPointers: dw Route1Gate1FScript ;>> routine dw Route1Gate1FNPCIDs ;>> data -Route1Gate1FNPCIDs: ; 406F +Route1Gate1FNPCIDs: db $00 db $01 db $FF -Route1Gate1FSignPointers: ; 4072 +Route1Gate1FSignPointers: dw MapDefaultText ;no signs -Route1Gate1FTextPointers:: ; 4074 +Route1Gate1FTextPointers:: dw Route1Gate1FText1 dw Route1Gate1FText2 -Route1Gate1FScript: ; 4078 +Route1Gate1FScript: ld hl, Route1Gate1FNPCIDs ld de, Route1Gate1FSignPointers call CallMapTextSubroutine ret -Route1Gate1FText1: ; 4082 +Route1Gate1FText1: ld hl, Route1Gate1FText1String call OpenTextbox ret -Route1Gate1FText2: ; 4089 +Route1Gate1FText2: ld hl, Route1Gate1FText2String call OpenTextbox ret -Route1Gate1FText1String: ; 4090 +Route1Gate1FText1String: text "このゲートを ぬけると" line "すぐに オールドシティ です" done -Route1Gate1FText2String: ; 40AC +Route1Gate1FText2String: text "オールドシティには" line "あの ゆうめいな" cont "ごじゅうのとう が あるの" |
