diff options
author | klektron <klektron@users.noreply.github.com> | 2021-01-03 15:36:24 +0100 |
---|---|---|
committer | klektron <klektron@users.noreply.github.com> | 2021-01-03 15:36:24 +0100 |
commit | dc294a0de559fcaa1e3b9043d7ef3cd3fa96a735 (patch) | |
tree | 2cf9c452ff5c2c147cde2c8124ed67fac180083a /constants | |
parent | 419eac2a656d5dd034e46c5f93ce808e583050de (diff) |
and it's finally done :D
Diffstat (limited to 'constants')
-rw-r--r-- | constants/gfx_constants.asm | 10 | ||||
-rw-r--r-- | constants/text_constants.asm | 6 |
2 files changed, 14 insertions, 2 deletions
diff --git a/constants/gfx_constants.asm b/constants/gfx_constants.asm index dd9de6b6..f37d5e67 100644 --- a/constants/gfx_constants.asm +++ b/constants/gfx_constants.asm @@ -37,3 +37,13 @@ REDRAW_ROW EQU 2 const TILEMAP_GENGAR_INTRO_3 const TILEMAP_GAME_BOY const TILEMAP_LINK_CABLE + +; DisplayTitleScreen +IF DEF(_RED) + const_def 8 + const VERSION_TILES ; 8 +ENDC +IF DEF(_BLUE) + const_def 10 + const VERSION_TILES ; 10 +ENDC
\ No newline at end of file diff --git a/constants/text_constants.asm b/constants/text_constants.asm index aa8374e5..5137efa8 100644 --- a/constants/text_constants.asm +++ b/constants/text_constants.asm @@ -2,8 +2,10 @@ NAME_LENGTH EQU 11 ITEM_NAME_LENGTH EQU 13 ; PrintNumber - const_def 5 - const BIT_MONEY_SIGN ; 5 + const_def + const BIT_MONEY_SIGN ; 0 + + const_def 6 const BIT_LEFT_ALIGN ; 6 const BIT_LEADING_ZEROES ; 7 |