diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-02-16 22:29:17 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-16 22:29:17 +0100 |
commit | 80812bcb9544ae878dfc378d82816fe75420f8c7 (patch) | |
tree | 1bd5d5993f2c9544da049be5aa9224caef2d7605 /src/constants | |
parent | 6a747cd61a34de515ce432fb34f86f4e0752faf1 (diff) |
Reorganize some graphics
Diffstat (limited to 'src/constants')
-rw-r--r-- | src/constants/misc_constants.asm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/constants/misc_constants.asm b/src/constants/misc_constants.asm index 18bf014..50bb03c 100644 --- a/src/constants/misc_constants.asm +++ b/src/constants/misc_constants.asm @@ -6,8 +6,11 @@ SCREEN_HEIGHT EQU 18 ; tiles BG_MAP_WIDTH EQU 32 ; tiles BG_MAP_HEIGHT EQU 32 ; tiles -; palettes -CGB_PAL_SIZE EQU 8 +; cgb palette size +CGB_PAL_SIZE EQU 8 ; bytes + +; tile size +TILE_SIZE EQU 16 ; bytes ; console types (for wConsole) CONSOLE_DMG EQU $00 |