diff options
-rw-r--r-- | HISTORY | 4 | ||||
-rw-r--r-- | rcu.c | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -2097,4 +2097,6 @@ Video Disk Recorder Revision History - Fixed handling dedicated keys. - Now turning off live PIDs when replaying. This avoids short spikes from other channels when switching between Transfer Mode channels, and also lets an ongoing - replay continue even if a recording is started on the primary card. + replay continue even if a recording is started on the primary device. +- The RCU channel display no longer changes when a recording on a different + channel starts on the primary device. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: rcu.c 1.4 2003/04/12 14:37:13 kls Exp $ + * $Id: rcu.c 1.5 2003/05/02 14:42:40 kls Exp $ */ #include "rcu.h" @@ -315,7 +315,7 @@ void cRcuRemote::ChannelSwitch(const cDevice *Device, int ChannelNumber) { if (ChannelNumber && Device->IsPrimaryDevice()) { LOCK_THREAD; - numberToSend = ChannelNumber; + numberToSend = cDevice::CurrentChannel(); } } |