summaryrefslogtreecommitdiff
path: root/sram.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 20:18:08 -0500
committerRangi <remy.oukaour+rangi42@gmail.com>2021-11-23 20:18:08 -0500
commitab0f9c287a45d1986985545d7ec6a2cd862e26fc (patch)
tree8063a15ad7082b953e47d2d00afd2679f9a8b470 /sram.asm
parent6834c7a9a149aaadccc7d41bc93e5440d84d8b66 (diff)
Use compound assignment operators
Diffstat (limited to 'sram.asm')
-rw-r--r--sram.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/sram.asm b/sram.asm
index 7e2866a1a..420d34743 100644
--- a/sram.asm
+++ b/sram.asm
@@ -177,7 +177,7 @@ endr
box_n = 0
boxes: MACRO
rept \1
-box_n = box_n + 1
+box_n += 1
sBox{d:box_n}:: box sBox{d:box_n}
endr
ENDM