diff options
Diffstat (limited to 'macros/data.asm')
-rw-r--r-- | macros/data.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/data.asm b/macros/data.asm index e9b818c8..2e998145 100644 --- a/macros/data.asm +++ b/macros/data.asm @@ -109,6 +109,6 @@ 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 |