aboutsummaryrefslogtreecommitdiff
path: root/plugins/dfsound/spu.c
diff options
context:
space:
mode:
authornotaz2012-07-30 16:27:32 +0300
committernotaz2012-07-31 01:31:34 +0300
commitf05d6ca255c80170e4e5fc61cc48d87e013b8807 (patch)
tree8c73dad5208e661e903b94e3b88e1d7208841fc2 /plugins/dfsound/spu.c
parent36dfb7876314f16d401e2016e55d126fb264d1df (diff)
downloadpcsx_rearmed-f05d6ca255c80170e4e5fc61cc48d87e013b8807.tar.gz
pcsx_rearmed-f05d6ca255c80170e4e5fc61cc48d87e013b8807.tar.bz2
pcsx_rearmed-f05d6ca255c80170e4e5fc61cc48d87e013b8807.zip
spu: some cleanups
Diffstat (limited to 'plugins/dfsound/spu.c')
-rw-r--r--plugins/dfsound/spu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c
index 69d6217..bbbe1e3 100644
--- a/plugins/dfsound/spu.c
+++ b/plugins/dfsound/spu.c
@@ -243,7 +243,7 @@ INLINE void InterpolateDown(int ch)
// helpers for gauss interpolation
#define gval0 (((short*)(&s_chan[ch].SB[29]))[gpos])
-#define gval(x) (((short*)(&s_chan[ch].SB[29]))[(gpos+x)&3])
+#define gval(x) ((int)((short*)(&s_chan[ch].SB[29]))[(gpos+x)&3])
#include "gauss_i.h"
@@ -386,7 +386,7 @@ INLINE int iGetInterpolationVal(int ch, int spos)
int vl, vr;int gpos;
vl = (spos >> 6) & ~3;
gpos = s_chan[ch].SB[28];
- vr=(gauss[vl]*gval0)&~2047;
+ vr=(gauss[vl]*(int)gval0)&~2047;
vr+=(gauss[vl+1]*gval(1))&~2047;
vr+=(gauss[vl+2]*gval(2))&~2047;
vr+=(gauss[vl+3]*gval(3))&~2047;