summaryrefslogtreecommitdiff
path: root/asm/macros
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2020-01-12 20:20:02 -0500
committerGriffinR <griffin.g.richards@gmail.com>2020-01-12 20:20:02 -0500
commite497fc64e302f6c9257da5a9435d2905e2e780a8 (patch)
tree3867fd34bcc8383aa47f07b60ac23b2bb998ce70 /asm/macros
parentf2e7b1507e564ba3b6b027a17aeeec2f89fba8c8 (diff)
if_undefeated macro to if_not_defeated
Diffstat (limited to 'asm/macros')
-rw-r--r--asm/macros/event.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/asm/macros/event.inc b/asm/macros/event.inc
index b26851148..298e8eb7c 100644
--- a/asm/macros/event.inc
+++ b/asm/macros/event.inc
@@ -1653,7 +1653,7 @@
goto_if TRUE, \dest
.endm
- .macro goto_if_undefeated trainer:req, dest:req
+ .macro goto_if_not_defeated trainer:req, dest:req
checktrainerflag \trainer
goto_if FALSE, \dest
.endm
@@ -1663,7 +1663,7 @@
call_if TRUE, \dest
.endm
- .macro call_if_undefeated trainer:req, dest:req
+ .macro call_if_not_defeated trainer:req, dest:req
checktrainerflag \trainer
call_if FALSE, \dest
.endm