aboutsummaryrefslogtreecommitdiffstats
path: root/data/trainers
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2021-04-17 21:00:28 -0500
committerdannye <33dannye@gmail.com>2021-04-17 21:00:28 -0500
commitd4154b289176647ff20e19879de70073bd6d9a30 (patch)
treef4175a9303dd0e1430f4c42e79a4d5ffb1f32c00 /data/trainers
parentMerge remote-tracking branch 'remotes/pokered/master' (diff)
parentPrevent some gcc versions from complaining about {0} in tools/scan_includes.c (diff)
downloadpokeyellow-d4154b289176647ff20e19879de70073bd6d9a30.tar.gz
pokeyellow-d4154b289176647ff20e19879de70073bd6d9a30.tar.xz
pokeyellow-d4154b289176647ff20e19879de70073bd6d9a30.zip
Merge branch 'master' of https://github.com/pret/pokered
Diffstat (limited to 'data/trainers')
-rw-r--r--data/trainers/move_choices.asm7
1 files changed, 3 insertions, 4 deletions
diff --git a/data/trainers/move_choices.asm b/data/trainers/move_choices.asm
index 2950e515..d80722b1 100644
--- a/data/trainers/move_choices.asm
+++ b/data/trainers/move_choices.asm
@@ -1,8 +1,7 @@
move_choices: MACRO
-REPT _NARG
- db \1
- shift
-ENDR
+ IF _NARG
+ db \# ; all args
+ ENDC
db 0 ; end
list_index = list_index + 1
ENDM