diff options
author | Daniel Harding <33dannye@gmail.com> | 2021-11-15 13:31:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 13:31:15 -0600 |
commit | f516a91f5fa02a741631c77b9097598f466d1328 (patch) | |
tree | bac2ee5e3fad02983b061580f5c085baecb5439a /src/constants/script_constants.asm | |
parent | 15e986d374fdd11ed0f412fbdc9b858d4c4b9f50 (diff) | |
parent | 1fd16cd27fcd4f432bfc09fc5b7a262798b72430 (diff) |
Some more bank splitting
Diffstat (limited to 'src/constants/script_constants.asm')
-rw-r--r-- | src/constants/script_constants.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/constants/script_constants.asm b/src/constants/script_constants.asm index 3a44694..3372266 100644 --- a/src/constants/script_constants.asm +++ b/src/constants/script_constants.asm @@ -304,4 +304,5 @@ NUM_MEDALS EQU 8 ; total number of packs that are obtained through the PC NUM_PC_PACKS EQU 15 -PACK_OPENED EQU %10000000 +PACK_UNOPENED_F EQU 7 +PACK_UNOPENED EQU 1 << PACK_UNOPENED_F |