diff options
-rw-r--r-- | docs/bugs_and_glitches.md | 2 | ||||
-rw-r--r-- | engine/gfx/color.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/bugs_and_glitches.md b/docs/bugs_and_glitches.md index 53b6e9562..4e6c74a99 100644 --- a/docs/bugs_and_glitches.md +++ b/docs/bugs_and_glitches.md @@ -1137,7 +1137,7 @@ Then edit [engine/battle/start_battle.asm](https://github.com/pret/pokecrystal/b xor a ldh [hMapAnims], a call DelayFrame -- ld b, 6 +- ld b, PARTY_LENGTH - ld hl, wPartyMon1HP - ld de, PARTYMON_STRUCT_LENGTH - 1 - diff --git a/engine/gfx/color.asm b/engine/gfx/color.asm index 57ea26102..ec500e85f 100644 --- a/engine/gfx/color.asm +++ b/engine/gfx/color.asm @@ -1091,7 +1091,7 @@ SGBBorder_MorePalPushing: jr nz, .loop ld bc, $140 call CopyData - ld bc, Start + ld bc, $100 call ClearBytes ld bc, 16 palettes call CopyData |