diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-11-23 20:56:57 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-11-23 20:56:57 -0500 |
commit | 865d37e02ad6af386e7f596659ebec12266be3ce (patch) | |
tree | 0b18ba59c76faf74f30850fdaa957177cf72ec2b /data | |
parent | 64e2b66a610d330bfdad108a603027be9652a7e7 (diff) |
Use compound assignment operators
Diffstat (limited to 'data')
-rw-r--r-- | data/trainers/move_choices.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/trainers/move_choices.asm b/data/trainers/move_choices.asm index 2c3498af..66bc36e7 100644 --- a/data/trainers/move_choices.asm +++ b/data/trainers/move_choices.asm @@ -3,7 +3,7 @@ move_choices: MACRO db \# ; all args ENDC db 0 ; end -list_index = list_index + 1 +list_index += 1 ENDM ; move choice modification methods that are applied for each trainer class |