diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-06 12:28:31 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-06 12:28:31 -0400 |
commit | 8a79315635ee9ebb6eed5c9648fe89746085d0b1 (patch) | |
tree | e4db65c6ced277be38f2cb0bfc85cdc39a90208e /macros/gfx.asm | |
parent | d08eb862339c29ffe387f661121ac4dfe79c74ab (diff) |
Capitalize rgbds control structures (EQU/EQUS, IF/ELIF/ELSE/ENDC, REPT/ENDR, MACRO/ENDM, etc)
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) *" |