diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-10-13 15:44:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 15:44:07 -0400 |
commit | 30ef49416391d036286661a8e1225b4ba03e3109 (patch) | |
tree | 449560dd408241717995409d3cb6c0a8e4b5223a /asm/macros | |
parent | 60a9dc6a0e81da34f111e66fd3666f9eb57898e9 (diff) | |
parent | e47b3efdfe8a397e20905d566a8e1b1261170fbb (diff) |
Merge branch 'master' into doc-inc2
Diffstat (limited to 'asm/macros')
-rw-r--r-- | asm/macros/event.inc | 6 | ||||
-rw-r--r-- | asm/macros/movement.inc | 4 |
2 files changed, 5 insertions, 5 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 diff --git a/asm/macros/movement.inc b/asm/macros/movement.inc index 99b5c8f84..e26a00d76 100644 --- a/asm/macros/movement.inc +++ b/asm/macros/movement.inc @@ -102,8 +102,8 @@ create_movement_action clear_fixed_priority create_movement_action init_affine_anim create_movement_action clear_affine_anim - create_movement_action unknown_movement_1 - create_movement_action unknown_movement_2 + create_movement_action hide_reflection + create_movement_action show_reflection create_movement_action walk_down_start_affine create_movement_action walk_down_affine |