1
0
mirror of https://github.com/VDR4Arch/vdr.git synced 2023-10-10 13:36:52 +02:00

The RCU channel display no longer changes when a recording on a different channel starts on the primary device

This commit is contained in:
Klaus Schmidinger 2003-05-02 14:45:40 +02:00
parent a6c1babf9a
commit 201364cd8a
2 changed files with 5 additions and 3 deletions

View File

@ -2097,4 +2097,6 @@ Video Disk Recorder Revision History
- Fixed handling dedicated keys. - Fixed handling dedicated keys.
- Now turning off live PIDs when replaying. This avoids short spikes from other - 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 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
rcu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and * See the main source file 'vdr.c' for copyright information and
* how to reach the author. * 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" #include "rcu.h"
@ -315,7 +315,7 @@ void cRcuRemote::ChannelSwitch(const cDevice *Device, int ChannelNumber)
{ {
if (ChannelNumber && Device->IsPrimaryDevice()) { if (ChannelNumber && Device->IsPrimaryDevice()) {
LOCK_THREAD; LOCK_THREAD;
numberToSend = ChannelNumber; numberToSend = cDevice::CurrentChannel();
} }
} }