diff options
author | yenatch <yenatch@gmail.com> | 2018-06-24 19:54:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-24 19:54:03 -0400 |
commit | 0cbe04da44744073c4c164df970b1571b1fda1a6 (patch) | |
tree | 3af0a92f5f7dc10f32eed04d9daae52749fc33c2 /engine/pokemon/types.asm | |
parent | 131875d3e37044ec995287af7c93decd86a0d659 (diff) | |
parent | 1d9a68dbdd0132035f1fc7b7ea8f7fdc24741507 (diff) |
Merge pull request #531 from mid-kid/master
Remove all address comments
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" |