diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 23:15:15 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-02-04 23:15:15 +0000 |
commit | 621bcc22940aed0242ed1795491a400521d2394d (patch) | |
tree | 4e2436a360db85c5b2cbe82b71a525e682b37738 /apps/eq.c | |
parent | 2fcd1b09d4514856153dee14f55ba5bbd10d43a8 (diff) | |
download | rockbox-621bcc22940aed0242ed1795491a400521d2394d.tar.gz rockbox-621bcc22940aed0242ed1795491a400521d2394d.zip |
The simulator should use the keypad period key, not the regular one
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8568 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; \ |