diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-05-25 03:54:42 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-05-25 03:54:42 -0400 |
| commit | 60f7ca40061da7ac5524636438f6bde10ea15ecb (patch) | |
| tree | b2c91a80c2d3ab0f233f65e3ddf9b832b9483e2d /engine/pokemon | |
| parent | 159cef004f86d134a551a3abfba2dee9020b16d0 (diff) | |
Group MoveDescriptions with PrintMoveDesc and rename that to PrintMoveDescription (like ItemDescriptions with PrintItemDescription)
Diffstat (limited to 'engine/pokemon')
| -rw-r--r-- | engine/pokemon/mon_menu.asm | 2 | ||||
| -rw-r--r-- | engine/pokemon/print_move_description.asm | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/engine/pokemon/mon_menu.asm b/engine/pokemon/mon_menu.asm index d25d6cc2b..8ffba32bf 100644 --- a/engine/pokemon/mon_menu.asm +++ b/engine/pokemon/mon_menu.asm @@ -1214,7 +1214,7 @@ PlaceMoveData: .description hlcoord 1, 14 - predef PrintMoveDesc + predef PrintMoveDescription ld a, $1 ldh [hBGMapMode], a ret diff --git a/engine/pokemon/print_move_description.asm b/engine/pokemon/print_move_description.asm index c461f2f3d..3647e1c54 100644 --- a/engine/pokemon/print_move_description.asm +++ b/engine/pokemon/print_move_description.asm @@ -1,4 +1,4 @@ -PrintMoveDesc: +PrintMoveDescription: push hl ld hl, MoveDescriptions ld a, [wCurSpecies] @@ -12,3 +12,5 @@ PrintMoveDesc: ld d, [hl] pop hl jp PlaceString + +INCLUDE "data/moves/descriptions.asm" |
