diff options
author | entrpntr <entrpntr@gmail.com> | 2020-03-25 14:11:25 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-03-25 15:10:21 -0400 |
commit | ca12e16b29402bd14b2bc96a13a2cf16639a35aa (patch) | |
tree | ef1ba8fde885d659852b6feab044283687d287b0 /engine/pokemon/move_mon.asm | |
parent | 14fb37e8100ed219e1bc08446424d1bfaf401a96 (diff) |
Disassemble load_pics.asm and move_mon_wo_mail.asm in bank $14.
Diffstat (limited to 'engine/pokemon/move_mon.asm')
-rwxr-xr-x | engine/pokemon/move_mon.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/pokemon/move_mon.asm b/engine/pokemon/move_mon.asm index 7198910d..5fce891f 100755 --- a/engine/pokemon/move_mon.asm +++ b/engine/pokemon/move_mon.asm @@ -406,7 +406,7 @@ AddTempmonToParty: ; da9c (3:5a9c) ld a, [wFirstUnownSeen] and a jr nz, .asm_db43 - ld a, [wd11e] + ld a, [wUnownLetter] ld [wFirstUnownSeen], a .asm_db43 and a @@ -604,7 +604,7 @@ SendGetMonIntoFromBox: ; db45 (3:5b45) ld a, [sBoxCount] dec a ld b, a - call Functiondcbc + call RestorePPOfDepositedPokemon Functiondcb2: ; dcb2 (3:5cb2) call CloseSRAM and a @@ -615,7 +615,7 @@ Functiondcb7: ; dcb7 (3:5cb7) scf ret -Functiondcbc: ; dcbc (3:5cbc) +RestorePPOfDepositedPokemon: ld a, b ld hl, sBoxMon1Species ld bc, BOXMON_STRUCT_LENGTH @@ -947,7 +947,7 @@ SendMonIntoBox: ; de74 (3:5e74) ld bc, $4 call CopyBytes ld b, $0 - call Functiondcbc + call RestorePPOfDepositedPokemon call CloseSRAM scf ret |