diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-02 14:45:40 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-05-02 14:45:40 +0200 |
commit | 201364cd8a874a9496212509877a72a7a53c5367 (patch) | |
tree | b0ae96ffa75cd11d5b872c5523d8e644841d6284 /rcu.c | |
parent | a6c1babf9a2827cf91c6c3b9809612927c890317 (diff) | |
download | vdr-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
Diffstat (limited to 'rcu.c')
-rw-r--r-- | rcu.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); } } |