summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-03-23 19:26:21 +0000
committerThom Johansen <thomj@rockbox.org>2006-03-23 19:26:21 +0000
commit5f9bd4fb987049ecea077c0a1039f0eee31c118c (patch)
tree257c200285cb9237ba31a4d2ed6a2509b4bb5acc
parent6cecfb006d601a18705bfcbf4a8ab0324d43368e (diff)
downloadrockbox-5f9bd4fb987049ecea077c0a1039f0eee31c118c.tar.gz
rockbox-5f9bd4fb987049ecea077c0a1039f0eee31c118c.zip
Make EQ work on 64 bit sims again.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9214 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/eq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/eq.c b/apps/eq.c
index 6e3e1e2126..8fb065aa09 100644
--- a/apps/eq.c
+++ b/apps/eq.c
@@ -102,7 +102,7 @@ static const unsigned long atan_table[] = {
102 * representing -1 and 1 respectively. 102 * representing -1 and 1 respectively.
103 */ 103 */
104long fsincos(unsigned long phase, long *cos) { 104long fsincos(unsigned long phase, long *cos) {
105 long x, x1, y, y1; 105 int32_t x, x1, y, y1;
106 unsigned long z, z1; 106 unsigned long z, z1;
107 int i; 107 int i;
108 108