diff options
Diffstat (limited to 'engine/pokemon/types.asm')
-rw-r--r-- | engine/pokemon/types.asm | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/engine/pokemon/types.asm b/engine/pokemon/types.asm index dc0df61ae..76c7665a4 100644 --- a/engine/pokemon/types.asm +++ b/engine/pokemon/types.asm @@ -1,4 +1,4 @@ -PrintMonTypes: ; 5090d +PrintMonTypes: ; Print one or both types of [wCurSpecies] ; on the stats screen at hl. @@ -37,10 +37,9 @@ PrintMonTypes: ; 5090d add hl, bc ld bc, NAME_LENGTH_JAPANESE - 1 jp ByteFill -; 5093a -PrintMoveType: ; 5093a +PrintMoveType: ; Print the type of move b at hl. push hl @@ -58,7 +57,7 @@ PrintMoveType: ; 5093a ld b, a -PrintType: ; 50953 +PrintType: ; Print type b at hl. ld a, b @@ -75,10 +74,9 @@ PrintType: ; 50953 pop hl jp PlaceString -; 50964 -GetTypeName: ; 50964 +GetTypeName: ; Copy the name of type [wd265] to wStringBuffer1. ld a, [wd265] @@ -93,7 +91,6 @@ GetTypeName: ; 50964 ld de, wStringBuffer1 ld bc, MOVE_NAME_LENGTH jp CopyBytes -; 5097b INCLUDE "data/types/names.asm" |