git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7319 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-08-13 18:09:06 +00:00
parent 8c7589bc96
commit b626269b94

View file

@ -59,7 +59,6 @@ void philips_set(int setting, int value)
#else
n = (4 * (value - 225000)) / 50000;
#endif
logf("n=%d", n);
write_bytes[0] = (write_bytes[0] & 0xC0) | (n >> 8);
write_bytes[1] = n & 0xFF;
}