summaryrefslogtreecommitdiff
path: root/asm/macros/event.inc
diff options
context:
space:
mode:
authorGriffinR <griffin.richards@comcast.net>2019-10-16 04:22:34 -0400
committerGitHub <noreply@github.com>2019-10-16 04:22:34 -0400
commitb4a9298205ee9355fadd4455a9b8f692dcd3e787 (patch)
tree156f18275a5187ae20fc5f5c3a72d61635f126ec /asm/macros/event.inc
parent20fa13616f3ad2ec2f7d68668b9f386355a10fa7 (diff)
parent60a592a2c32d07d47c892204659a8576017584d1 (diff)
Merge branch 'master' into document-gyms2
Diffstat (limited to 'asm/macros/event.inc')
-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 38046c778..39510c207 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