summaryrefslogtreecommitdiff
path: root/firmware/target/coldfire/iaudio/x5
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 /firmware/target/coldfire/iaudio/x5
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
Diffstat (limited to 'firmware/target/coldfire/iaudio/x5')
-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)
105 { 105 {
106 if(data < 0x7a) 106 if(data < 0x7a)
107 if(data < 0x41) 107 if(data < 0x41)
108 btn |= BUTTON_RC_REW; 108 btn |= BUTTON_RC_FF;
109 else 109 else
110 if(data < 0x61) 110 if(data < 0x61)
111 btn |= BUTTON_RC_FF; 111 btn |= BUTTON_RC_REW;
112 else 112 else
113 btn |= BUTTON_RC_MODE; 113 btn |= BUTTON_RC_MODE;
114 else 114 else