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 | Merge pull request #268 from Rangi42/master (diff) | |
| parent | Use const_skip and const_next macros for brevity (diff) | |
| download | pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.tar.gz pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.tar.xz pokeyellow-aa97e196dd5b37e89db5ddf154dc7aea9b02a045.zip | |
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 |
