diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 23:16:31 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 23:16:31 +0000 |
| commit | dd8cb8a2c12a538e935d508e77794753f5f11276 (patch) | |
| tree | ca6a135526ada7a629d8046af74bc30b37e83003 /apps/eq.c | |
| parent | 621bcc22940aed0242ed1795491a400521d2394d (diff) | |
| download | rockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.zip rockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.tar.gz rockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.tar.bz2 rockbox-dd8cb8a2c12a538e935d508e77794753f5f11276.tar.xz | |
Committed a little too much
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8569 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)) -/* 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. +/* 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. */ -#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) +#if defined(CPU_COLDFIRE) && !defined(SIMULATOR) && 0 #define FRACMUL(x, y) \ ({ \ long t; \ |