diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-23 11:34:55 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-23 11:34:55 -0500 |
commit | 1d2df3bba124676075c3841b850d92c1c532b5df (patch) | |
tree | 574b4a088b88078e9224fe7fce04162a8c9311db /mobile | |
parent | 2f9f2317a3e02808a20449e8b9ed55d0718e5f0b (diff) |
Some more WRAM cleanup
Diffstat (limited to 'mobile')
-rwxr-xr-x | mobile/battle_tower_5c.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mobile/battle_tower_5c.asm b/mobile/battle_tower_5c.asm index 85c7dcf31..4ab57ea2c 100755 --- a/mobile/battle_tower_5c.asm +++ b/mobile/battle_tower_5c.asm @@ -612,11 +612,11 @@ CopyBTTrainer_FromBT_OT_TowBT_OTTemp: ; 1704a2 ; copy the BattleTower-Trainer data that lies at 'BT_OTTrainer' to 'wBT_OTTemp' ld a, [rSVBK] push af - ld a, $3 ; BANK(BT_OTTrainer) + ld a, BANK(BT_OTTrainer) ld [rSVBK], a - ld hl, BT_OTTrainer ; $d100 - ld de, wBT_OTTemp ; wMisc + ld hl, BT_OTTrainer + ld de, wBT_OTTemp ld bc, BATTLE_TOWER_STRUCT_LENGTH call CopyBytes |