summaryrefslogtreecommitdiff
path: root/asm
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2019-10-12 17:30:45 -0500
committerhuderlem <huderlem@gmail.com>2019-10-12 18:58:54 -0500
commite47b3efdfe8a397e20905d566a8e1b1261170fbb (patch)
treeec71d22bbec46be364e93201b1aa43cec295f5ea /asm
parent02782093760c8a303b9126995a47af63bf3a8b95 (diff)
Unify showmonpic and hidemonpic script command names with their function names
Diffstat (limited to 'asm')
-rw-r--r--asm/macros/event.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index 54078332c..57bb504bd 100644
--- a/asm/macros/event.inc
+++ b/asm/macros/event.inc
@@ -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