From 865d37e02ad6af386e7f596659ebec12266be3ce Mon Sep 17 00:00:00 2001 From: Rangi Date: Tue, 23 Nov 2021 20:56:57 -0500 Subject: Use compound assignment operators --- data/trainers/move_choices.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data') 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 -- cgit v1.3.1-sl0p