Use compound assignment operators

This commit is contained in:
Rangi
2021-11-23 20:18:08 -05:00
parent 6834c7a9a1
commit ab0f9c287a
17 changed files with 28 additions and 28 deletions

View File

@@ -727,7 +727,7 @@ sine_table: MACRO
x = 0
rept \1
dw (sin(x) + (sin(x) & $ff)) >> 8 ; round up
x = x + DIV(32768, \1) ; a circle has 65536 "degrees"
x += DIV(32768, \1) ; a circle has 65536 "degrees"
endr
ENDM
```