diff options
author | 7Soul <henriquelazarini@gmail.com> | 2018-11-10 21:23:28 -0200 |
---|---|---|
committer | 7Soul <henriquelazarini@gmail.com> | 2018-11-10 21:23:28 -0200 |
commit | b4c5a0d35cbf433858b3699c65d950cc9626d7fb (patch) | |
tree | 31587e5e3369fd141c135c40aa9c0933eba07dd5 | |
parent | 5b60cd8a2ed6f5150e1881afc8e6158efbaff4d5 (diff) |
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"
-rw-r--r-- | Physical-Special-split.md | 12 |
1 files changed, 12 insertions, 0 deletions
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! |