diff options
author | Dan Everton <dan@iocaine.org> | 2006-02-07 14:07:46 +0000 |
---|---|---|
committer | Dan Everton <dan@iocaine.org> | 2006-02-07 14:07:46 +0000 |
commit | 88abdd97b25eb458466a84f614a518b7173265a8 (patch) | |
tree | 4a70e3d0d829125e458c80fb21ccf82c77733e36 /apps/eq.c | |
parent | 27f69db40494ca63887fce941dfe02dbd5f24d5b (diff) | |
download | rockbox-88abdd97b25eb458466a84f614a518b7173265a8.tar.gz rockbox-88abdd97b25eb458466a84f614a518b7173265a8.zip |
Add Equalizer configuration to Sound Settings menu.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8606 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/eq.c')
-rw-r--r-- | apps/eq.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -32,11 +32,11 @@ */ #define DIV64(x, y, z) (long)(((long long)(x) << (z))/(y)) -/* TODO: This macro requires the EMAC unit to be in fractional mode - when the coef generator routines are called. If this can be guaranteeed, - then remove the "&& 0" below for faster coef calculation on Coldfire. +/* This macro requires the EMAC unit to be in fractional mode + when the coef generator routines are called. If this can't be guaranteeed, + then add "&& 0" below. This will use a slower coef calculation on Coldfire. */ -#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) && 0 +#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) #define FRACMUL(x, y) \ ({ \ long t; \ |