diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-07-10 23:14:39 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-07-10 23:14:39 +0200 |
commit | 1cb35e7d97933f146ad9ab7966bb496536aa3d93 (patch) | |
tree | db984b49773cc45106335a47e3344bb07c78afcf /src/constants/gfx_constants.asm | |
parent | 1ef94a8af1a7232bf6e54911b16e0dd63c4f602f (diff) |
More text engine
TODO: update charmaps and text/
Diffstat (limited to 'src/constants/gfx_constants.asm')
-rw-r--r-- | src/constants/gfx_constants.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/constants/gfx_constants.asm b/src/constants/gfx_constants.asm index f5915d3..4ab84d2 100644 --- a/src/constants/gfx_constants.asm +++ b/src/constants/gfx_constants.asm @@ -14,6 +14,9 @@ palettes EQUS "* CGB_PAL_SIZE" TILE_SIZE EQU 16 ; bytes tiles EQUS "* TILE_SIZE" +TILE_SIZE_1BPP EQU 8 ; bytes +tiles_1bpp EQUS "* TILE_SIZE_1BPP" + ; wFlushPaletteFlags constants FLUSH_ONE EQU %10000000 FLUSH_ALL EQU %11000000 |