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:
parent
a6c1babf9a
commit
201364cd8a
4
HISTORY
4
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.
|
||||
|
4
rcu.c
4
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();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user