summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2003-05-02 14:45:40 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2003-05-02 14:45:40 +0200
commit201364cd8a874a9496212509877a72a7a53c5367 (patch)
treeb0ae96ffa75cd11d5b872c5523d8e644841d6284
parenta6c1babf9a2827cf91c6c3b9809612927c890317 (diff)
downloadvdr-201364cd8a874a9496212509877a72a7a53c5367.tar.gz
vdr-201364cd8a874a9496212509877a72a7a53c5367.tar.bz2
The RCU channel display no longer changes when a recording on a different channel starts on the primary device
-rw-r--r--HISTORY4
-rw-r--r--rcu.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index eb371a5c..a23a689b 100644
--- a/HISTORY
+++ b/HISTORY
@@ -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.
diff --git a/rcu.c b/rcu.c
index 5c76a35c..dae9b2a1 100644
--- a/rcu.c
+++ b/rcu.c
@@ -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();
}
}