diff options
-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); |