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/PlayerHouse1F.asm | |
| parent | e789ee48b65e8cc08104ef06de4b08c9ef9d117d (diff) | |
| parent | 8900eb7ad06931b78dcb91e0c2e7db583090aa06 (diff) | |
Merge pull request #72 from jd-0/master
Remove address comments
Diffstat (limited to 'maps/PlayerHouse1F.asm')
| -rw-r--r-- | maps/PlayerHouse1F.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/maps/PlayerHouse1F.asm b/maps/PlayerHouse1F.asm index b4481a0..9626e28 100644 --- a/maps/PlayerHouse1F.asm +++ b/maps/PlayerHouse1F.asm @@ -2,38 +2,38 @@ include "constants.asm" SECTION "maps/PlayerHouse1F.asm", ROMX -PlayerHouse1FScriptLoader:: ; 409C +PlayerHouse1FScriptLoader:: ld hl, PlayerHouse1FScriptPointers call RunMapScript call WriteBackMapScriptNumber ret -PlayerHouse1FScriptPointers: ; 40A6 +PlayerHouse1FScriptPointers: dw PlayerHouse1FScript1 dw PlayerHouse1FNPCIDs1 dw PlayerHouse1FScript2 dw PlayerHouse1FNPCIDs2 -PlayerHouse1FNPCIDs1: ; 40AE +PlayerHouse1FNPCIDs1: db $FF -PlayerHouse1FNPCIDs2: ; 40AF +PlayerHouse1FNPCIDs2: db 0 db $FF -PlayerHouse1FScript1: ; 40B1 +PlayerHouse1FScript1: ld hl, PlayerHouse1FNPCIDs1 ld de, PlayerHouse1FSignPointers call CallMapTextSubroutine ret -PlayerHouse1FScript2: ; 40BB +PlayerHouse1FScript2: ld hl, PlayerHouse1FNPCIDs2 ld de, PlayerHouse1FSignPointers call CallMapTextSubroutine ret -PlayerHouse1FSignPointers: ; 40C5 +PlayerHouse1FSignPointers: dw Function38ab dw Function38b4 dw Function38a2 @@ -42,12 +42,12 @@ PlayerHouse1FSignPointers: ; 40C5 PlayerHouse1FTextPointers:: dw PlayerHouse1FNPCText1 -PlayerHouse1FNPCText1: ; 40D1 +PlayerHouse1FNPCText1: ld hl, PlayerHouse1FTextString1 call OpenTextbox ret -PlayerHouse1FTextString1: ; 40D8 +PlayerHouse1FTextString1: text "おかあさん『えっ あなた" line "オーキドはかせに" cont "ポケモンずかんを つくってくれって" |
