mirror of https://github.com/PrimeDecomp/prime.git
Build fixes
Former-commit-id: 04d06aec008ca8ae0254256e2c09a30c087bee06
This commit is contained in:
parent
88d1cd404e
commit
c75dae767e
|
@ -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"),
|
||||
|
|
|
@ -140,8 +140,8 @@ void salStartDsp(u16* cmdList) {
|
|||
;
|
||||
}
|
||||
|
||||
void salCtrlDsp(u32 unk) {
|
||||
salBuildCommandList(unk, salGetStartDelay());
|
||||
void salCtrlDsp(u16* dest) {
|
||||
salBuildCommandList(dest, salGetStartDelay());
|
||||
salStartDsp(dspCmdList);
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue