diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/item_data_constants.asm | 2 | ||||
-rw-r--r-- | constants/misc_constants.asm | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/constants/item_data_constants.asm b/constants/item_data_constants.asm index 4c295d5b3..f6d6384ce 100644 --- a/constants/item_data_constants.asm +++ b/constants/item_data_constants.asm @@ -47,6 +47,8 @@ MAX_BALLS EQU 12 MAX_KEY_ITEMS EQU 25 MAX_PC_ITEMS EQU 50 +MAX_ITEM_STACK EQU 99 + ; mail MAIL_LINE_LENGTH EQU $10 MAIL_MSG_LENGTH EQU $20 diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index b492e958e..a3c31141c 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -19,6 +19,9 @@ GS_VERSION EQU 0 SAVE_CHECK_VALUE_1 EQU 99 SAVE_CHECK_VALUE_2 EQU 127 +; RTC halted check value +RTC_HALT_VALUE EQU $1234 + ; time of day boundaries MORN_HOUR EQU 4 ; 4 AM DAY_HOUR EQU 10 ; 10 AM |