From 28cce684a3f433200e5257eb929ee8d7a63b67ff Mon Sep 17 00:00:00 2001 From: Björn Stenberg Date: Wed, 23 Apr 2003 09:21:37 +0000 Subject: 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 --- apps/recorder/wormlet.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/recorder/wormlet.c') 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) 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; -- cgit v1.2.3