summaryrefslogtreecommitdiff
path: root/macros.asm
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2015-12-02 13:24:18 -0500
committerPikalaxALT <PikalaxALT@gmail.com>2015-12-02 13:24:18 -0500
commitbe082943ed8fa746ae345b9f93783e5993550373 (patch)
tree10af6716b774a58551d8d38ab6ad2ea62f9e5c2a /macros.asm
parent92a8c491c3a8c39a7c51b300d759f93aa5157447 (diff)
More work interpreting the sprite engine
Diffstat (limited to 'macros.asm')
-rw-r--r--macros.asm2
1 files changed, 1 insertions, 1 deletions
diff --git a/macros.asm b/macros.asm
index 7a7b2d1aa..486c6e519 100644
--- a/macros.asm
+++ b/macros.asm
@@ -248,5 +248,5 @@ palgreen EQUS "$0020 *"
palblue EQUS "$0001 *"
dsprite: MACRO
- db \1 * 8 + \2, \3 * 8 + \4, \5, \6
+ db (\1 * 8) % $100 + \2, (\3 * 8) % $100 + \4, \5, \6
endm