Unify showmonpic and hidemonpic script command names with their function names

This commit is contained in:
Marcus Huderle
2019-10-12 17:30:45 -05:00
committed by huderlem
parent 0278209376
commit e47b3efdfe
2 changed files with 13 additions and 13 deletions

View File

@@ -878,15 +878,15 @@
.endm
@ Displays a box containing the front sprite for the specified (species) Pokemon species.
.macro drawmonpic species:req, x:req, y:req
.macro showmonpic species:req, x:req, y:req
.byte 0x75
.2byte \species
.byte \x
.byte \y
.endm
@ Hides all boxes displayed with drawmonpic.
.macro erasemonpic
@ Hides all boxes displayed with showmonpic.
.macro hidemonpic
.byte 0x76
.endm