diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-11 01:02:28 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-11 01:02:28 -0500 |
commit | 41acb0667a321865277f50a45e662b1aae939a00 (patch) | |
tree | 7e6646403fd0a61371e4d1d48956d908655c1321 /constants/misc_constants.asm | |
parent | c6fefd0fe878a350a5e8cb1140d0356c78648ba5 (diff) |
Document macros/map.asm
Rename MORN/DAY/NITE to MORN_F/DAY_F/NITE_F; use MORN/DAY/NITE for shifted values (cleaner for person_events)
Prefix FLOOR to the `elevfloor` constants
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 6ae41e989..94244b481 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -50,14 +50,14 @@ NUM_HOF_TEAMS = 30 ; joypad const_def - const A_BUTTON_F - const B_BUTTON_F - const SELECT_F - const START_F - const D_RIGHT_F - const D_LEFT_F - const D_UP_F - const D_DOWN_F + const A_BUTTON_F ; 0 + const B_BUTTON_F ; 1 + const SELECT_F ; 2 + const START_F ; 3 + const D_RIGHT_F ; 4 + const D_LEFT_F ; 5 + const D_UP_F ; 6 + const D_DOWN_F ; 7 NO_INPUT EQU %00000000 A_BUTTON EQU 1 << A_BUTTON_F |