From 627e70ce7e3975ff7ee02928eee02308a7232dad Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 27 Feb 2005 14:12:03 +0100 Subject: [PATCH] Fixed handling repeated kAudio keys --- HISTORY | 1 + menu.c | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/HISTORY b/HISTORY index 37543d1b..a8f49b70 100644 --- a/HISTORY +++ b/HISTORY @@ -3441,3 +3441,4 @@ Video Disk Recorder Revision History - Improved automatic audio track selection. - Keeping the track language codes and descriptions in Transfer Mode (thanks to Luca Olivetti). +- Fixed handling repeated kAudio keys. diff --git a/menu.c b/menu.c index 56a74b79..e3168633 100644 --- a/menu.c +++ b/menu.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: menu.c 1.341 2005/02/20 13:39:49 kls Exp $ + * $Id: menu.c 1.342 2005/02/27 14:09:00 kls Exp $ */ #include "menu.h" @@ -2946,6 +2946,7 @@ eOSState cDisplayTracks::ProcessKey(eKeys Key) timeout.Set(TRACKTIMEOUT); } break; + case kAudio|k_Repeat: case kAudio: if (++track >= numTracks) track = 0;