summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2007-10-30 00:06:09 +0000
committerThom Johansen <thomj@rockbox.org>2007-10-30 00:06:09 +0000
commite9001ae514128ae2a243a11408d230c15ab6b2b8 (patch)
tree77ec7b6f8892d2e07febe3fcb10242227c17b846
parentdaf937422c17ea571b67e3ef7dae570369daa8a1 (diff)
downloadrockbox-e9001ae514128ae2a243a11408d230c15ab6b2b8.tar.gz
rockbox-e9001ae514128ae2a243a11408d230c15ab6b2b8.zip
Just because it's #if 0 doesn't make it inferior...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15370 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/dsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dsp.c b/apps/dsp.c
index 305288fa77..4cade936b9 100644
--- a/apps/dsp.c
+++ b/apps/dsp.c
@@ -241,7 +241,7 @@ static inline long clip_sample(int32_t sample, int32_t min, int32_t range)
241 int32_t c = min; 241 int32_t c = min;
242 if (sample > min) 242 if (sample > min)
243 c += range; 243 c += range;
244 sample = c 244 sample = c;
245 } 245 }
246 return sample; 246 return sample;
247} 247}