summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
authorElectroDeoxys <ElectroDeoxys@gmail.com>2021-05-20 13:34:25 +0100
committerElectroDeoxys <ElectroDeoxys@gmail.com>2021-05-20 13:34:25 +0100
commit6a7f5a9ebe6e91607c92a4a98ec6562914c12ab8 (patch)
tree34a145890b65109d411ed5e8e212ecf07f645569 /src/constants
parent511209843c1f851c24d07069193c8bedfd3c5579 (diff)
Start Menu disasm
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/gfx_constants.asm2
-rw-r--r--src/constants/menu_constants.asm7
2 files changed, 9 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"
diff --git a/src/constants/menu_constants.asm b/src/constants/menu_constants.asm
index 86df8bf..007a354 100644
--- a/src/constants/menu_constants.asm
+++ b/src/constants/menu_constants.asm
@@ -46,3 +46,10 @@ NUM_CARDS_PROMOTIONAL EQU 20
const_def
const VENUSAUR_OWNED_PHANTOM_F ; $0
const MEW_OWNED_PHANTOM_F ; $1
+
+; wStartMenuChoice enums
+ const_def
+ const START_MENU_CARD_POP ; 0
+ const START_MENU_CONTINUE_FROM_DIARY ; 1
+ const START_MENU_NEW_GAME ; 2
+ const START_MENU_CONTINUE_DUEL ; 3