summaryrefslogtreecommitdiff
path: root/apps/recorder/wormlet.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-04-23 09:21:37 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-04-23 09:21:37 +0000
commit28cce684a3f433200e5257eb929ee8d7a63b67ff (patch)
tree6afe48a8bd53bac805e6ae19dd58f6843af5ccf1 /apps/recorder/wormlet.c
parent86587527f52db8320f8d8ea48dfc76d3d93d79c8 (diff)
downloadrockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.tar.gz
rockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.zip
Changed remote control button events to separate codes. Now the remote control works while keys are locked.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3586 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/wormlet.c')
-rw-r--r--apps/recorder/wormlet.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/wormlet.c b/apps/recorder/wormlet.c
index d6850dc039..2937a1bb83 100644
--- a/apps/recorder/wormlet.c
+++ b/apps/recorder/wormlet.c
@@ -1348,11 +1348,11 @@ static bool run(void)
1348 player2_dir = (player2_dir + 1) % 4; 1348 player2_dir = (player2_dir + 1) % 4;
1349 break; 1349 break;
1350 1350
1351 case BUTTON_VOL_UP: 1351 case BUTTON_RC_VOL_UP:
1352 player3_dir = (player3_dir + 1) % 4; 1352 player3_dir = (player3_dir + 1) % 4;
1353 break; 1353 break;
1354 1354
1355 case BUTTON_VOL_DOWN: 1355 case BUTTON_RC_VOL_DOWN:
1356 player3_dir = (player3_dir + 3) % 4; 1356 player3_dir = (player3_dir + 3) % 4;
1357 break; 1357 break;
1358 1358