mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed creating a new VPS timer with the SVDRP command NEWT
This commit is contained in:
parent
9bd2b9901f
commit
66a2bf9906
@ -2739,6 +2739,7 @@ Johann Friedrichs <johann.friedrichs@web.de>
|
|||||||
for fixing a busy loop when moving editing marks
|
for fixing a busy loop when moving editing marks
|
||||||
for making cPalette::ClosestColor() treat fully transparent colors as "equal"
|
for making cPalette::ClosestColor() treat fully transparent colors as "equal"
|
||||||
for implementing scaling of SPU bitmaps
|
for implementing scaling of SPU bitmaps
|
||||||
|
for fixing creating a new VPS timer with the SVDRP command NEWT
|
||||||
|
|
||||||
Timo Helkio <timolavi@mbnet.fi>
|
Timo Helkio <timolavi@mbnet.fi>
|
||||||
for reporting a hangup when replaying a TS recording with subtitles activated
|
for reporting a hangup when replaying a TS recording with subtitles activated
|
||||||
|
4
HISTORY
4
HISTORY
@ -7730,7 +7730,7 @@ Video Disk Recorder Revision History
|
|||||||
to avoid problems with SD-FF cards in case the user switches to the "ST:TNG" or
|
to avoid problems with SD-FF cards in case the user switches to the "ST:TNG" or
|
||||||
"Classic" skin.
|
"Classic" skin.
|
||||||
|
|
||||||
2013-03-15: Version 1.7.41
|
2013-03-16: Version 1.7.41
|
||||||
|
|
||||||
- Updated the Hungarian OSD texts (thanks to István Füley).
|
- Updated the Hungarian OSD texts (thanks to István Füley).
|
||||||
- Updated the Russian OSD texts (thanks to Oleg Roitburd).
|
- Updated the Russian OSD texts (thanks to Oleg Roitburd).
|
||||||
@ -7754,3 +7754,5 @@ Video Disk Recorder Revision History
|
|||||||
HOME, USER, LOGNAME and SHELL accordingly (thanks to Manuel Reimer).
|
HOME, USER, LOGNAME and SHELL accordingly (thanks to Manuel Reimer).
|
||||||
- Updated the help and man page entry about the location of the epg.data file (thanks
|
- Updated the help and man page entry about the location of the epg.data file (thanks
|
||||||
to Ville Skyttä).
|
to Ville Skyttä).
|
||||||
|
- Fixed creating a new VPS timer with the SVDRP command NEWT (thanks to Johann
|
||||||
|
Friedrichs).
|
||||||
|
4
timers.c
4
timers.c
@ -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: timers.c 2.16 2013/02/05 11:13:20 kls Exp $
|
* $Id: timers.c 2.17 2013/03/16 10:37:10 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "timers.h"
|
#include "timers.h"
|
||||||
@ -43,7 +43,7 @@ cTimer::cTimer(bool Instant, bool Pause, cChannel *Channel)
|
|||||||
weekdays = 0;
|
weekdays = 0;
|
||||||
start = now->tm_hour * 100 + now->tm_min;
|
start = now->tm_hour * 100 + now->tm_min;
|
||||||
stop = 0;
|
stop = 0;
|
||||||
if (!Setup.InstantRecordTime && channel) {
|
if (!Setup.InstantRecordTime && channel && (Instant || Pause)) {
|
||||||
cSchedulesLock SchedulesLock;
|
cSchedulesLock SchedulesLock;
|
||||||
if (const cSchedules *Schedules = cSchedules::Schedules(SchedulesLock)) {
|
if (const cSchedules *Schedules = cSchedules::Schedules(SchedulesLock)) {
|
||||||
if (const cSchedule *Schedule = Schedules->GetSchedule(channel)) {
|
if (const cSchedule *Schedule = Schedules->GetSchedule(channel)) {
|
||||||
|
Loading…
Reference in New Issue
Block a user