From b4c5a0d35cbf433858b3699c65d950cc9626d7fb Mon Sep 17 00:00:00 2001 From: 7Soul Date: Sat, 10 Nov 2018 21:23:28 -0200 Subject: When you try moving the move, the description box is cleared to show the text "where?" but it wasn't clearing the last 2 digits of the words "SPECIAL" and "PHYSICAL" --- Physical-Special-split.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Physical-Special-split.md b/Physical-Special-split.md index 6ee4747..3410b98 100644 --- a/Physical-Special-split.md +++ b/Physical-Special-split.md @@ -441,6 +441,18 @@ Edit [engine/pokemon/mon_menu.asm](../blob/master/engine/pokemon/mon_menu.asm) ( + db "│ └@" ``` +```diff +.moving_move + ld a, " " + hlcoord 1, 11 +- ld bc, 5 ++ ld bc, 8 + call ByteFill + hlcoord 1, 12 + lb bc, 5, SCREEN_WIDTH - 2 + call ClearBox +``` + Again, instead of printing "TYPE/" in the move property box, we print the move's category. There's no room for the "/" after the category, so here it goes before the type. Now we're done! -- cgit v1.2.3