diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-26 19:00:07 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-26 19:11:18 -0400 |
commit | 0b33dabae2d43591a964774154f8bec5bf7194b1 (patch) | |
tree | b51d8de7de034c38081a679abf8c9a14efd8bfaa /constants/misc_constants.asm | |
parent | 9ce922493398842b2e91383a08098f20249d44c7 (diff) |
Disassemble map scenes and events.
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 03911c50..37cee638 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -12,7 +12,11 @@ SET_FLAG EQU 1 CHECK_FLAG EQU 2 ; 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 |