diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-11 15:47:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 15:47:19 -0400 |
commit | aa97e196dd5b37e89db5ddf154dc7aea9b02a045 (patch) | |
tree | c994a1ca8f587d674e680ec808e7fcbaab4d053d /constants/script_constants.asm | |
parent | 54d76dec388a70260aad6ef6acb94a5b9f95fd6d (diff) | |
parent | 3e572b6f48b81e5340980c13b1b37b2907942713 (diff) |
Merge pull request #269 from Rangi42/master
Remove enum; add const_skip and const_next
Diffstat (limited to 'constants/script_constants.asm')
-rw-r--r-- | constants/script_constants.asm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/constants/script_constants.asm b/constants/script_constants.asm index c04e9ca0..d381ce6c 100644 --- a/constants/script_constants.asm +++ b/constants/script_constants.asm @@ -1,7 +1,8 @@ ; emotion bubbles -EXCLAMATION_BUBBLE EQU 0 -QUESTION_BUBBLE EQU 1 -SMILE_BUBBLE EQU 2 + const_def + const EXCLAMATION_BUBBLE ; 0 + const QUESTION_BUBBLE ; 1 + const SMILE_BUBBLE ; 2 ; slot symbols SLOTS7 EQU $0200 |