diff options
author | yenatch <yenatch@gmail.com> | 2018-07-19 00:46:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-19 00:46:59 -0400 |
commit | 2d73d040d16a7836f935a7a6cb2a311aed2ca5a2 (patch) | |
tree | d2ac10a6cc7f70e839f393706e1a3261cf95c2ae /constants/script_constants.asm | |
parent | 3e14c1f26e91b1fc1d18eed389518ae8454e938f (diff) | |
parent | 1cb364cc1825d1b149eb4e0fe09d1cab21006208 (diff) |
Merge pull request #542 from mid-kid/master
Miscellaneous fixes
Diffstat (limited to 'constants/script_constants.asm')
-rw-r--r-- | constants/script_constants.asm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/constants/script_constants.asm b/constants/script_constants.asm index 35f988c4e..a31394a36 100644 --- a/constants/script_constants.asm +++ b/constants/script_constants.asm @@ -119,8 +119,14 @@ CMDQUEUE_05 EQU 5 CMDQUEUE_ENTRY_SIZE EQU 6 CMDQUEUE_CAPACITY EQU 4 -; command queue types -CMDQUEUE_STONETABLE EQU 2 +; HandleQueuedCommand.Jumptable indexes (see engine/overworld/events.asm) + const_def + const CMDQUEUE_NULL + const CMDQUEUE_NULL2 + const CMDQUEUE_STONETABLE + const CMDQUEUE_TYPE3 + const CMDQUEUE_TYPE4 +NUM_CMDQUEUE_TYPES EQU const_value ; elevfloor macro values ; ElevatorFloorNames indexes (see data/events/elevator_floors.asm) |