diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2022-07-11 20:06:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-11 23:06:21 -0400 |
| commit | 85b19de4ab93ac0d36ff7e37a1a130b44c02316a (patch) | |
| tree | 9d6f0f377fdbad3902e7c2661f84a476bf14bdb3 /src/code/audio | |
| parent | 81ce7bebccfbd0d4804a26be7eb845e1294e634f (diff) | |
General Cleanup 4 (#871)
* PartTimerWorker -> PartTimer
* cleanup
* format
* objChan draw macro
* Fix macro
* Fix warning
* PR Review
* Missed 1 ull
* UINT16_MAX
* Remove todo from footmark
* Remove * from tex in AnimatedMat_DrawTexCycle
Diffstat (limited to 'src/code/audio')
| -rw-r--r-- | src/code/audio/audio_load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/audio/audio_load.c b/src/code/audio/audio_load.c index 8faf565ea..8b70eadd7 100644 --- a/src/code/audio/audio_load.c +++ b/src/code/audio/audio_load.c @@ -277,7 +277,7 @@ void AudioLoad_InitSampleDmaBuffers(s32 numNotes) { } else { AudioHeap_WritebackDCache(dma->ramAddr, gAudioContext.sampleDmaBufSize); dma->size = gAudioContext.sampleDmaBufSize; - dma->devAddr = 0U; + dma->devAddr = 0; dma->sizeUnused = 0; dma->unused = 0; dma->ttl = 0; |
