diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 19:57:35 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-01-22 19:57:35 -0500 |
commit | 14ef9d3066ddf48f392b8afb698d85f0a7583f6f (patch) | |
tree | 538154be8b70d72332d43af772cf55220d92e675 /macros/gfx.asm | |
parent | a73c532738d055bb3d28a46b59f7fc87d2c998d4 (diff) |
PALETTE_SIZE
Diffstat (limited to 'macros/gfx.asm')
-rw-r--r-- | macros/gfx.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macros/gfx.asm b/macros/gfx.asm index d9b1c46b0..ff07ba468 100644 --- a/macros/gfx.asm +++ b/macros/gfx.asm @@ -11,9 +11,9 @@ palred EQUS "(1 << 0) *" palgreen EQUS "(1 << 5) *" palblue EQUS "(1 << 10) *" -palettes EQUS "* 8" -palette EQUS "+ 8 *" -color EQUS "+ 2 *" +palettes EQUS "* PALETTE_SIZE" +palette EQUS "+ PALETTE_SIZE *" +color EQUS "+ PAL_COLOR_SIZE *" tiles EQUS "* LEN_2BPP_TILE" tile EQUS "+ LEN_2BPP_TILE *" |