summaryrefslogtreecommitdiff
path: root/plugins/dfsound/reverb.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/dfsound/reverb.c')
-rw-r--r--plugins/dfsound/reverb.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/plugins/dfsound/reverb.c b/plugins/dfsound/reverb.c
index ce119621..bd20f3e5 100644
--- a/plugins/dfsound/reverb.c
+++ b/plugins/dfsound/reverb.c
@@ -63,7 +63,7 @@ void SetREVERB(unsigned short val)
// START REVERB
////////////////////////////////////////////////////////////////////////
-INLINE void StartREVERB(int ch)
+void StartREVERB(int ch)
{
if(s_chan[ch].bReverb && (spuCtrl&0x80)) // reverb possible?
{
@@ -84,7 +84,7 @@ INLINE void StartREVERB(int ch)
// HELPER FOR NEILL'S REVERB: re-inits our reverb mixing buf
////////////////////////////////////////////////////////////////////////
-INLINE void InitREVERB(void)
+static INLINE void InitREVERB(void)
{
if(iUseReverb==2)
{memset(sRVBStart,0,NSSIZE*2*4);}
@@ -94,7 +94,7 @@ INLINE void InitREVERB(void)
// STORE REVERB
////////////////////////////////////////////////////////////////////////
-INLINE void StoreREVERB_CD(int left, int right,int ns)
+static INLINE void StoreREVERB_CD(int left, int right,int ns)
{
if(iUseReverb==0) return;
else
@@ -112,7 +112,7 @@ INLINE void StoreREVERB_CD(int left, int right,int ns)
}
-INLINE void StoreREVERB(int ch,int ns)
+void StoreREVERB(int ch,int ns)
{
if(iUseReverb==0) return;
else
@@ -149,7 +149,7 @@ INLINE void StoreREVERB(int ch,int ns)
////////////////////////////////////////////////////////////////////////
-INLINE int g_buffer(int iOff) // get_buffer content helper: takes care about wraps
+static INLINE int g_buffer(int iOff) // get_buffer content helper: takes care about wraps
{
short * p=(short *)spuMem;
iOff=(iOff*4)+rvb.CurrAddr;
@@ -160,7 +160,7 @@ INLINE int g_buffer(int iOff) // get_buffer content hel
////////////////////////////////////////////////////////////////////////
-INLINE void s_buffer(int iOff,int iVal) // set_buffer content helper: takes care about wraps and clipping
+static INLINE void s_buffer(int iOff,int iVal) // set_buffer content helper: takes care about wraps and clipping
{
short * p=(short *)spuMem;
iOff=(iOff*4)+rvb.CurrAddr;
@@ -172,7 +172,7 @@ INLINE void s_buffer(int iOff,int iVal) // set_buffer content hel
////////////////////////////////////////////////////////////////////////
-INLINE void s_buffer1(int iOff,int iVal) // set_buffer (+1 sample) content helper: takes care about wraps and clipping
+static INLINE void s_buffer1(int iOff,int iVal) // set_buffer (+1 sample) content helper: takes care about wraps and clipping
{
short * p=(short *)spuMem;
iOff=(iOff*4)+rvb.CurrAddr+1;
@@ -184,7 +184,7 @@ INLINE void s_buffer1(int iOff,int iVal) // set_buffer (+1 sample
////////////////////////////////////////////////////////////////////////
-INLINE int MixREVERBLeft(int ns)
+static INLINE int MixREVERBLeft(int ns)
{
if(iUseReverb==0) return 0;
else
@@ -291,7 +291,7 @@ INLINE int MixREVERBLeft(int ns)
////////////////////////////////////////////////////////////////////////
-INLINE int MixREVERBRight(void)
+static INLINE int MixREVERBRight(void)
{
if(iUseReverb==0) return 0;
else