diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-31 16:25:16 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-31 16:25:16 -0400 |
commit | f9ae7b1240863b4311d24944ae7ec3c1d9b24507 (patch) | |
tree | 2b56ef44fa89d464da16399f8432cd4807ec7d64 /engine/battle/core.asm | |
parent | 5c73cffee6b854e4e08db04a776aa8a71d3a82cd (diff) |
More WRAM label cleanup (still needs UNIONs and renaming)
Diffstat (limited to 'engine/battle/core.asm')
-rw-r--r-- | engine/battle/core.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/battle/core.asm b/engine/battle/core.asm index 8eee39d2..f325350f 100644 --- a/engine/battle/core.asm +++ b/engine/battle/core.asm @@ -6900,9 +6900,9 @@ ResetCryModifiers: ; animates the mon "growing" out of the pokeball AnimateSendingOutMon: - ld a, [wPredefRegisters] + ld a, [wPredefHL] ld h, a - ld a, [wPredefRegisters + 1] + ld a, [wPredefHL + 1] ld l, a ldh a, [hStartTileID] ldh [hBaseTileID], a @@ -6940,9 +6940,9 @@ AnimateSendingOutMon: jr CopyUncompressedPicToHL CopyUncompressedPicToTilemap: - ld a, [wPredefRegisters] + ld a, [wPredefHL] ld h, a - ld a, [wPredefRegisters + 1] + ld a, [wPredefHL + 1] ld l, a ldh a, [hStartTileID] CopyUncompressedPicToHL:: |