diff options
author | Daniel Harding <33dannye@gmail.com> | 2020-05-16 21:42:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-16 21:42:24 -0500 |
commit | 8a924f1f783572ff395f617f99546b4c949c8b04 (patch) | |
tree | 1b6c7de331cb983256651b11b8adf413a3a434f1 /constants/misc_constants.asm | |
parent | 88d7e9a34a8b610b358cec1ccc6660634ca9ce80 (diff) | |
parent | ed94962edf1668aba3f60938e8a5ba8040e2a59c (diff) |
Merge pull request #30 from entrpntr/spring-cleaning
Spring Cleaning
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 03911c50..9efd3c55 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -7,12 +7,17 @@ MALE EQU 0 FEMALE EQU 1 ; FlagAction arguments (see home/flag.asm) -RESET_FLAG EQU 0 -SET_FLAG EQU 1 -CHECK_FLAG EQU 2 + const_def + const RESET_FLAG + const SET_FLAG + const CHECK_FLAG ; G/S version ID: 0 = Gold, 1 = Silver (used by checkver) +IF DEF(_GOLD) GS_VERSION EQU 0 +ELIF DEF(_SILVER) +GS_VERSION EQU 1 +ENDC ; save file corruption check values SAVE_CHECK_VALUE_1 EQU 99 |