Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Antidote committed Nov 30, 2023
1 parent cb7c8e4 commit 04d06ae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1194,7 +1194,7 @@ def Rel(lib_name, objects):
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"),
Expand Down
4 changes: 2 additions & 2 deletions src/musyx/runtime/dolphin/hw_dolphin.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ void salStartDsp(u16* cmdList) {
;
}

void salCtrlDsp(u32 unk) {
salBuildCommandList(unk, salGetStartDelay());
void salCtrlDsp(u16* dest) {
salBuildCommandList(dest, salGetStartDelay());
salStartDsp(dspCmdList);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 04d06ae

Please sign in to comment.