summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/scspdsp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/sound/scspdsp.c')
-rw-r--r--src/emu/sound/scspdsp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/sound/scspdsp.c b/src/emu/sound/scspdsp.c
index 6beab9db278..2ddc62fdecb 100644
--- a/src/emu/sound/scspdsp.c
+++ b/src/emu/sound/scspdsp.c
@@ -53,14 +53,14 @@ static INT32 UNPACK(UINT16 val)
return uval;
}
-void SCSPDSP_Init(struct _SCSPDSP *DSP)
+void SCSPDSP_Init(SCSPDSP *DSP)
{
- memset(DSP,0,sizeof(struct _SCSPDSP));
+ memset(DSP,0,sizeof(SCSPDSP));
DSP->RBL=0x8000;
DSP->Stopped=1;
}
-void SCSPDSP_Step(struct _SCSPDSP *DSP)
+void SCSPDSP_Step(SCSPDSP *DSP)
{
INT32 ACC=0; //26 bit
INT32 SHIFTED=0; //24 bit
@@ -330,7 +330,7 @@ void SCSPDSP_Step(struct _SCSPDSP *DSP)
// fclose(f);
}
-void SCSPDSP_SetSample(struct _SCSPDSP *DSP,INT32 sample,int SEL,int MXL)
+void SCSPDSP_SetSample(SCSPDSP *DSP,INT32 sample,int SEL,int MXL)
{
//DSP->MIXS[SEL]+=sample<<(MXL+1)/*7*/;
DSP->MIXS[SEL]+=sample;
@@ -338,7 +338,7 @@ void SCSPDSP_SetSample(struct _SCSPDSP *DSP,INT32 sample,int SEL,int MXL)
// int a=1;
}
-void SCSPDSP_Start(struct _SCSPDSP *DSP)
+void SCSPDSP_Start(SCSPDSP *DSP)
{
int i;
DSP->Stopped=0;