diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2024-04-05 21:42:14 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-05 21:42:14 -0600 |
| commit | c4d596d297182d81488c7d09769666de450140bb (patch) | |
| tree | ed8456aa14f96a1da3807693f621e8c4179756e3 /src/audio | |
| parent | 12f332614ed9ee8b684d4b0fdae91e5ef14568ff (diff) | |
trig tables shiftable (#596)
Diffstat (limited to 'src/audio')
| -rw-r--r-- | src/audio/load.c | 2 | ||||
| -rw-r--r-- | src/audio/synthesis.h | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/audio/load.c b/src/audio/load.c index e390470ee..f43d3d4a8 100644 --- a/src/audio/load.c +++ b/src/audio/load.c @@ -9,7 +9,7 @@ #include "audio/synthesis.h" #include "audio/seqplayer.h" #include "audio/port_eu.h" -#include "data/gfx_output_buffer.h" +#include "buffers/gfx_output_buffer.h" #define ALIGN16(val) (((val) + 0xF) & ~0xF) diff --git a/src/audio/synthesis.h b/src/audio/synthesis.h index 06e244f85..974fc9c32 100644 --- a/src/audio/synthesis.h +++ b/src/audio/synthesis.h @@ -109,10 +109,6 @@ Acmd *final_resample(Acmd *acmd, struct NoteSynthesisState *synthesisState, s32 Acmd *func_800B86A0(Acmd *cmd, struct NoteSubEu *note, struct NoteSynthesisState *synthesisState, s32 nSamples, u16 inBuf, s32 headsetPanSettings, u32 flags); Acmd *note_apply_headset_pan_effects(Acmd *acmd, struct NoteSubEu *noteSubEu, struct NoteSynthesisState *note, s32 bufLen, s32 flags, s32 leftRight); -// These 2 are almost certainly misnamed and misplaced -extern u64 gGfxSPTaskOutputBuffer[]; -extern u32 gGfxSPTaskOutputBufferSize; - extern struct SynthesisReverb gSynthesisReverbs[4]; /* |
