summaryrefslogtreecommitdiff
path: root/src/macros
diff options
context:
space:
mode:
authordannye <33dannye@gmail.com>2020-12-20 13:22:52 -0600
committerdannye <33dannye@gmail.com>2020-12-20 13:22:52 -0600
commitf7346b9491715307b31ff3d8003e16a976e60961 (patch)
treeb91e3b724778d4b3dc63a7e68a53c33ac3e21cc6 /src/macros
parente506359b615a6c352c41b4366c8cdafe634a4a05 (diff)
No more '+ -x'
it was only needed because of a very old rgbds bug
Diffstat (limited to 'src/macros')
-rw-r--r--src/macros/data.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macros/data.asm b/src/macros/data.asm
index d08ec4e..23de208 100644
--- a/src/macros/data.asm
+++ b/src/macros/data.asm
@@ -20,7 +20,7 @@ dx: MACRO
x = 8 * ((\1) - 1)
rept \1
db ((\2) >> x) & $ff
-x = x + -8
+x = x - 8
endr
ENDM