diff options
author | yenatch <yenatch@gmail.com> | 2017-12-12 00:08:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-12 00:08:54 -0500 |
commit | f6942b9a136b2ee3b25159ebc4d54509a42c5266 (patch) | |
tree | 0c0bedcd311ab83262e31cf6d9d4c37257143acc /battle/anim_commands.asm | |
parent | 94c7def4883fbdbcd3987a067443a2069b8bb610 (diff) | |
parent | 79873a1bfc0e40067c45dc74fbbebf547d177978 (diff) |
Merge pull request #411 from roukaour/master
Clean up more labels, constants, and file names
Diffstat (limited to 'battle/anim_commands.asm')
-rw-r--r-- | battle/anim_commands.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/battle/anim_commands.asm b/battle/anim_commands.asm index b4633d8dd..fa0ae0a71 100644 --- a/battle/anim_commands.asm +++ b/battle/anim_commands.asm @@ -1437,13 +1437,13 @@ BattleAnim_SetBGPals: ; cc91a ld de, UnknBGPals ld a, [rBGP] ld b, a - ld c, $7 + ld c, 7 call CopyPals ld hl, OBPals ld de, UnknOBPals ld a, [rBGP] ld b, a - ld c, $2 + ld c, 2 call CopyPals pop af ld [rSVBK], a @@ -1461,11 +1461,11 @@ BattleAnim_SetOBPals: ; cc94b push af ld a, $5 ld [rSVBK], a - ld hl, OBPals + $10 - ld de, UnknOBPals + $10 + ld hl, OBPals palette PAL_BATTLE_OB_GRAY + ld de, UnknOBPals palette PAL_BATTLE_OB_GRAY ld a, [rOBP0] ld b, a - ld c, $2 + ld c, 2 call CopyPals pop af ld [rSVBK], a |