summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-08-17 14:32:23 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-08-17 14:32:23 +0000
commitdffcb9fc3b606c76974ab8d5a84e3c88032621c3 (patch)
treeb57f548ad76905546ce9135560fa2c58e1bc67c1
parentb9731561f86eef8212ec39cecd02cfe329bffc87 (diff)
downloadrockbox-dffcb9fc3b606c76974ab8d5a84e3c88032621c3.tar.gz
rockbox-dffcb9fc3b606c76974ab8d5a84e3c88032621c3.zip
iAudio X5: swap the remote REW and FF buttons
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10634 a1c6a512-1295-4272-9138-f99709370657
-rwxr-xr-xfirmware/target/coldfire/iaudio/x5/button-x5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/target/coldfire/iaudio/x5/button-x5.c b/firmware/target/coldfire/iaudio/x5/button-x5.c
index bfe793e438..287ee0e92b 100755
--- a/firmware/target/coldfire/iaudio/x5/button-x5.c
+++ b/firmware/target/coldfire/iaudio/x5/button-x5.c
@@ -105,10 +105,10 @@ int button_read_device(void)
{
if(data < 0x7a)
if(data < 0x41)
- btn |= BUTTON_RC_REW;
+ btn |= BUTTON_RC_FF;
else
if(data < 0x61)
- btn |= BUTTON_RC_FF;
+ btn |= BUTTON_RC_REW;
else
btn |= BUTTON_RC_MODE;
else