diff options
| author | Dave Bryant <bryant@rockbox.org> | 2006-02-08 08:01:31 +0000 |
|---|---|---|
| committer | Dave Bryant <bryant@rockbox.org> | 2006-02-08 08:01:31 +0000 |
| commit | b44c18ea9d9d41f59e5069669a09befc7a708c13 (patch) | |
| tree | 7a4e2cfa0625626cb0bc659742ce4a962d27d210 | |
| parent | 56647275b5f108e7116aee2ecb27b7e4b47c5600 (diff) | |
| download | rockbox-b44c18ea9d9d41f59e5069669a09befc7a708c13.zip rockbox-b44c18ea9d9d41f59e5069669a09befc7a708c13.tar.gz rockbox-b44c18ea9d9d41f59e5069669a09befc7a708c13.tar.bz2 rockbox-b44c18ea9d9d41f59e5069669a09befc7a708c13.tar.xz | |
Quick fix for crossfeed on iPod. Still needs optimization, but at least no
more unpleasant surprises!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8618 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -48,7 +48,7 @@ #define ATT_COMP 0x73333333L /* 0.9 */ #define LOW 0x4CCCCCCDL /* 0.6 */ #define LOW_COMP 0x33333333L /* 0.4 */ -#define HIGH_NEG 0x9999999AL /* -0.2 */ +#define HIGH_NEG -0x66666666L /* -0.2 (not unsigned!) */ #define HIGH_COMP 0x66666666L /* 0.8 */ #if defined(CPU_COLDFIRE) && !defined(SIMULATOR) |