diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-12-01 17:08:29 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-12-01 17:08:29 +0100 |
commit | d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09 (patch) | |
tree | e7b8007f4031d4435881604e6f0d378b861156e4 | |
parent | 79a353c8b9b42922c5a4cf193539c6de658a65d0 (diff) | |
download | vdr-d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09.tar.gz vdr-d2fec895294e5ea0b6cc3d68f4af5dbcc9259c09.tar.bz2 |
Fixed saving the MarginStop setup parameter
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | config.c | 3 |
2 files changed, 4 insertions, 2 deletions
@@ -312,10 +312,11 @@ Video Disk Recorder Revision History an early state and may still cause some problems, but it appears to work nice already. -2000-11-26: Version 0.69 +2000-12-01: Version 0.69 - The EPG data is now dumped into the file /video/epg.data every ten minutes. Use the Perl script 'epg2html.pl' to convert the raw EPG data into a simple HTML programme listing. - Fixed handling of channel switching with the "Blue" button in the "What's on now/next?" menus. +- Fixed saving the MarginStop setup parameter. @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.34 2000/11/18 13:26:36 kls Exp $ + * $Id: config.c 1.35 2000/12/01 16:53:48 kls Exp $ */ #include "config.h" @@ -792,6 +792,7 @@ bool cSetup::Save(const char *FileName) fprintf(f, "LnbFrequHi = %d\n", LnbFrequHi); fprintf(f, "SetSystemTime = %d\n", SetSystemTime); fprintf(f, "MarginStart = %d\n", MarginStart); + fprintf(f, "MarginStop = %d\n", MarginStop); fprintf(f, "EPGScanTimeout = %d\n", EPGScanTimeout); fclose(f); isyslog(LOG_INFO, "saved setup to %s", FileName); |