diff options
author | yenatch <yenatch@gmail.com> | 2015-02-10 18:21:38 -0800 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2015-02-10 18:21:38 -0800 |
commit | 956b990cd23bb821d665d56775e946ea07091690 (patch) | |
tree | 7c15520a68327b7382bbf20b2a1c93be2865593d /battle/anim_commands.asm | |
parent | c0c081d60fa2e23fdfbd938994506ca63fd44780 (diff) |
Fix a bunch of palette copying errors and wram bank conflicts.
There are probably a bunch more labels with wrong banks. This takes care of the most noticeable ones.
Diffstat (limited to 'battle/anim_commands.asm')
-rw-r--r-- | battle/anim_commands.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/battle/anim_commands.asm b/battle/anim_commands.asm index e138363fc..54a269dfe 100644 --- a/battle/anim_commands.asm +++ b/battle/anim_commands.asm @@ -1428,13 +1428,13 @@ Functioncc91a: ; cc91a ld a, $5 ld [rSVBK], a ld hl, BGPals - ld de, wd000 + ld de, Unkn1Pals ld a, [rBGP] ld b, a ld c, $7 call CopyPals ld hl, OBPals - ld de, MartPointer + ld de, Unkn2Pals ld a, [rBGP] ld b, a ld c, $2 |