diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-06-25 10:03:19 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-06-25 10:03:19 +0200 |
commit | ce5e23f2097f6491f87e0fb5e72c0781975667c9 (patch) | |
tree | 69cd4cef812a4d3ef0fcb2ea0648348e1736fa11 /timers.c | |
parent | 139a93156b9542c77fbad5afe423de4ccedbb754 (diff) | |
download | vdr-ce5e23f2097f6491f87e0fb5e72c0781975667c9.tar.gz vdr-ce5e23f2097f6491f87e0fb5e72c0781975667c9.tar.bz2 |
Timers are now linked to EPG events even if they are inactive
Diffstat (limited to 'timers.c')
-rw-r--r-- | timers.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: timers.c 4.10 2017/05/26 15:43:38 kls Exp $ + * $Id: timers.c 4.11 2017/06/25 10:02:09 kls Exp $ */ #include "timers.h" @@ -476,7 +476,7 @@ eTimerMatch cTimer::Matches(const cEvent *Event, int *Overlap) const // To make sure a VPS timer can be distinguished from a plain 100% overlap, // it gets an additional 100 added, and a VPS event that is actually running // gets 200 added to the FULLMATCH. - if (HasFlags(tfActive) && channel->GetChannelID() == Event->ChannelID()) { + if (channel->GetChannelID() == Event->ChannelID()) { bool UseVps = HasFlags(tfVps) && Event->Vps(); Matches(UseVps ? Event->Vps() : Event->StartTime(), true); int overlap = 0; |