diff options
| author | engineer124 <47598039+engineer124@users.noreply.github.com> | 2022-10-07 07:29:33 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-07 13:29:33 +0200 |
| commit | 062f4d8e158a5f497efad26910d1c799fed3184e (patch) | |
| tree | cf363b6fc08fe61c7ee9158ed21a9d759b2f018e /src/code/audio_external_data.c | |
| parent | a99d41bf35d560996e252dd7db18bd488e98f70c (diff) | |
Document code_800F9280.c -> audio_seqcmd.c i.e. (Audio_QueueSeqCmd) (#1234)
* Document SoundSources
* PR Suggestions
* Duration timers to dec
* `PlaySfxByPosAndId` -> `PlaySoundByPosition`
* Begin importing docs from MM
* Finish cleanup using code from MM
* Start documenting commands
* First attempt at thorough AudioSeqCmd wrappers
* Improve names
* Merge branch 'master' into audio_seqCmd
fix name to minimize conflicts
* Combine macros, implement them through repo
* Improve docs
* More progress, begin sequence command docs
* seqcmd.h
* More documentation of seqcmd.h
* More docs
* cleanup
* More cleanup
* More docs
* VOL_SCALE_INDEX enum
* missed enums
* More Cleanup
* docs
* More docs
* Add comments about sfxChannelLayout
* More cleanup
* Even better docs
* Add a file description
* small touchups
* More cleanup of comments
* more
* More cleanup
* More cleanup
* Missing space
* typos
* Audio_SetVolumeScaleNow
* More cleanup
* Fill in enum
* one more cleanup
* Capitalize macros
* remove AUDIO_
* cleanup
* more cleanup
* Small Fix
* Add a lot of backticks for docs
* Restructuring docs
* More cleanup
* swap channel args, cleanup
* Typos
* Many suggestions, revert filename
* pr suggestions
* even more PR
* more pr suggestions
* pr suggestion
Diffstat (limited to 'src/code/audio_external_data.c')
| -rw-r--r-- | src/code/audio_external_data.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/audio_external_data.c b/src/code/audio_external_data.c index 3dcf0fd1d..6a4c29eda 100644 --- a/src/code/audio_external_data.c +++ b/src/code/audio_external_data.c @@ -52,10 +52,10 @@ u8 D_801333F8 = 0; s32 D_801333FC = 0; // unused -u8 gSeqCmdWrPos = 0; -u8 gSeqCmdRdPos = 0; -u8 D_80133408 = 0; -u8 D_8013340C = 1; +u8 gSeqCmdWritePos = 0; +u8 gSeqCmdReadPos = 0; +u8 gStartSeqDisabled = false; +u8 gAudioDebugPrintSeqCmd = true; u8 gSoundModeList[] = { SOUNDMODE_STEREO, |
