diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 09:21:37 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-04-23 09:21:37 +0000 |
| commit | 28cce684a3f433200e5257eb929ee8d7a63b67ff (patch) | |
| tree | 6afe48a8bd53bac805e6ae19dd58f6843af5ccf1 /apps/recorder | |
| parent | 86587527f52db8320f8d8ea48dfc76d3d93d79c8 (diff) | |
| download | rockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.zip rockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.tar.gz rockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.tar.bz2 rockbox-28cce684a3f433200e5257eb929ee8d7a63b67ff.tar.xz | |
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')
| -rw-r--r-- | apps/recorder/wormlet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/wormlet.c b/apps/recorder/wormlet.c index d6850dc..2937a1b 100644 --- a/apps/recorder/wormlet.c +++ b/apps/recorder/wormlet.c @@ -1348,11 +1348,11 @@ static bool run(void) player2_dir = (player2_dir + 1) % 4; break; - case BUTTON_VOL_UP: + case BUTTON_RC_VOL_UP: player3_dir = (player3_dir + 1) % 4; break; - case BUTTON_VOL_DOWN: + case BUTTON_RC_VOL_DOWN: player3_dir = (player3_dir + 3) % 4; break; |