diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2016-09-27 09:37:10 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2016-09-27 09:37:10 -0400 |
commit | ef98c44edd40d28f56afb271d0a64e52ee59fc96 (patch) | |
tree | 026a0e9e7a9d02f2b6606313b5666c07b636a139 /constants/audio_constants.asm | |
parent | 700321a7fb2d6c852ffc91cc0b8867526cb76813 (diff) |
Person action and facing labels, part 1
Diffstat (limited to 'constants/audio_constants.asm')
-rwxr-xr-x | constants/audio_constants.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/constants/audio_constants.asm b/constants/audio_constants.asm index b34ffe67d..bc50e3db2 100755 --- a/constants/audio_constants.asm +++ b/constants/audio_constants.asm @@ -55,9 +55,9 @@ SOUND_VIBRATO_DIR EQU 0 SOUND_PITCH_WHEEL_DIR EQU 1 ; NoteFlags -NOTE_UNKN_0 EQU 0 -NOTE_UNKN_1 EQU 1 +NOTE_DUTY_OVERRIDE EQU 0 +NOTE_FREQ_OVERRIDE EQU 1 NOTE_UNKN_3 EQU 3 -NOTE_UNKN_4 EQU 4 +NOTE_NOISE_SAMPLING EQU 4 NOTE_REST EQU 5 -NOTE_UNKN_6 EQU 6 +NOTE_VIBRATO_OVERRIDE EQU 6 |