diff options
author | notaz | 2010-12-25 00:27:55 +0200 |
---|---|---|
committer | notaz | 2010-12-25 00:27:55 +0200 |
commit | cfe71c00d61819b76744f7163316d98cc389c91e (patch) | |
tree | 35a3bb8b76fb808dfeb3ba21eacdd2bc2f46bc9a /plugins/dfsound | |
parent | a06c1d6e156b90ce9bfa18664256dfe8f815857e (diff) | |
download | pcsx_rearmed-cfe71c00d61819b76744f7163316d98cc389c91e.tar.gz pcsx_rearmed-cfe71c00d61819b76744f7163316d98cc389c91e.tar.bz2 pcsx_rearmed-cfe71c00d61819b76744f7163316d98cc389c91e.zip |
spu: kill voldiv on ARM too
Diffstat (limited to 'plugins/dfsound')
-rw-r--r-- | plugins/dfsound/spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfsound/spu.c b/plugins/dfsound/spu.c index b71b914..804a728 100644 --- a/plugins/dfsound/spu.c +++ b/plugins/dfsound/spu.c @@ -441,7 +441,7 @@ INLINE int iGetInterpolationVal(int ch) static void *MAINThread(void *arg) { int s_1,s_2,fa,ns; -#ifndef _MACOSX +#if !defined(_MACOSX) && !defined(__arm__) int voldiv = iVolume; #else const int voldiv = 2; |