summaryrefslogtreecommitdiff
path: root/plugins/ao/eng_psf/eng_spu.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ao/eng_psf/eng_spu.c')
-rw-r--r--plugins/ao/eng_psf/eng_spu.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/ao/eng_psf/eng_spu.c b/plugins/ao/eng_psf/eng_spu.c
index b27aa98d..b13e0c5f 100644
--- a/plugins/ao/eng_psf/eng_spu.c
+++ b/plugins/ao/eng_psf/eng_spu.c
@@ -43,8 +43,6 @@
#include "peops/spu.h"
#include "peops/regs.h"
-extern void setlength(int32 stop, int32 fade);
-
typedef struct {
uint8 *start_of_file, *song_ptr;
uint32 cur_tick, cur_event, num_events, next_tick, end_tick;
@@ -81,7 +79,7 @@ void *spu_start(uint8 *buffer, uint32 length)
s->mips_cpu = mips_alloc ();
SPUinit(s->mips_cpu, spu_update, s);
SPUopen(s->mips_cpu);
- setlength(~0, 0);
+ setlength(s->mips_cpu->spu, ~0, 0);
// upload the SPU RAM image
SPUinjectRAMImage(s->mips_cpu, (unsigned short *)&buffer[0]);