diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-06 13:47:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 13:47:59 -0400 |
commit | c480632d5494d04f7f5f0298a31877a2293b564e (patch) | |
tree | 02483fc07e60d64a4b526ce8b402f26960ad33b2 /macros/gfx.asm | |
parent | 122d715484b79aba71d79caf148bac4a2ec441a5 (diff) | |
parent | 9c2be80bf3fbdac6505787b00da0f4ff71839a05 (diff) |
Merge pull request #262 from Rangi42/master
Miscellaneous
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r-- | macros/gfx.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm index bad051ad..950daee1 100644 --- a/macros/gfx.asm +++ b/macros/gfx.asm @@ -1,8 +1,8 @@ RGB: MACRO -rept _NARG / 3 +REPT _NARG / 3 dw palred (\1) + palgreen (\2) + palblue (\3) shift 3 -endr +ENDR ENDM palred EQUS "(1 << 0) *" |