diff options
author | Daniel Harding <33dannye@gmail.com> | 2021-05-30 11:07:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-30 11:07:54 -0500 |
commit | e8cbcea8e76004a9cef04499301cec5755dcc942 (patch) | |
tree | c8ed944e6ea43d03cee5367603e40881b6ac17bb /src/constants/gfx_constants.asm | |
parent | 0a3b84155b53785c974a2b352a6473124c56631b (diff) | |
parent | 63f0559573cbec5a199645263a36b51b503d4ed1 (diff) |
Merge pull request #105 from ElectroDeoxys/master
Work on Bank $7 (NPCs, Start Menu and Opening/Credits sequences)
Diffstat (limited to 'src/constants/gfx_constants.asm')
-rw-r--r-- | src/constants/gfx_constants.asm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/constants/gfx_constants.asm b/src/constants/gfx_constants.asm index 6ec2e0b..a32e255 100644 --- a/src/constants/gfx_constants.asm +++ b/src/constants/gfx_constants.asm @@ -13,6 +13,8 @@ palettes EQUS "* CGB_PAL_SIZE" NUM_BACKGROUND_PALETTES EQU 8 NUM_OBJECT_PALETTES EQU 8 +PALRGB_WHITE EQU (31 << 10 | 31 << 5 | 31) + ; tile size TILE_SIZE EQU 16 ; bytes tiles EQUS "* TILE_SIZE" |