Build fixes

This commit is contained in:
Phillip Stephens 2023-11-30 04:38:32 -08:00
parent cb7c8e496e
commit 04d06aec00
3 changed files with 7 additions and 4 deletions

View File

@ -1194,7 +1194,7 @@ config.libs = [
Object(Matching, "musyx/runtime/synth_vsamples.c"),
Object(Matching, "musyx/runtime/synth_dbtab.c"),
Object(Matching, "musyx/runtime/s_data.c"),
Object(NonMatching, "musyx/runtime/hw_dspctrl.c"),
Object(NonMatching, "musyx/runtime/dolphin/hw_dspctrl.c"),
Object(Matching, "musyx/runtime/hw_volconv.c"),
Object(Matching, "musyx/runtime/snd3d.c"),
Object(Matching, "musyx/runtime/snd_init.c"),

View File

@ -140,8 +140,8 @@ void salStartDsp(u16* cmdList) {
;
}
void salCtrlDsp(u32 unk) {
salBuildCommandList(unk, salGetStartDelay());
void salCtrlDsp(u16* dest) {
salBuildCommandList(dest, salGetStartDelay());
salStartDsp(dspCmdList);
}

View File

@ -15,7 +15,10 @@
*/
#include "musyx/musyx_priv.h"
#include "musyx/assert.h"
#include "musyx/dspvoice.h"
#include "musyx/hardware.h"
#include "musyx/sal.h"
#ifdef _DEBUG
static u32 dbgActiveVoicesMax = 0;