Fixed saving the MarginStop setup parameter

This commit is contained in:
Klaus Schmidinger 2000-12-01 17:08:29 +01:00
parent 79a353c8b9
commit d2fec89529
2 changed files with 4 additions and 2 deletions

View File

@ -312,10 +312,11 @@ Video Disk Recorder Revision History
an early state and may still cause some problems, but it appears to work nice an early state and may still cause some problems, but it appears to work nice
already. 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. - 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 Use the Perl script 'epg2html.pl' to convert the raw EPG data into a simple
HTML programme listing. HTML programme listing.
- Fixed handling of channel switching with the "Blue" button in the "What's on - Fixed handling of channel switching with the "Blue" button in the "What's on
now/next?" menus. now/next?" menus.
- Fixed saving the MarginStop setup parameter.

View File

@ -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: 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" #include "config.h"
@ -792,6 +792,7 @@ bool cSetup::Save(const char *FileName)
fprintf(f, "LnbFrequHi = %d\n", LnbFrequHi); fprintf(f, "LnbFrequHi = %d\n", LnbFrequHi);
fprintf(f, "SetSystemTime = %d\n", SetSystemTime); fprintf(f, "SetSystemTime = %d\n", SetSystemTime);
fprintf(f, "MarginStart = %d\n", MarginStart); fprintf(f, "MarginStart = %d\n", MarginStart);
fprintf(f, "MarginStop = %d\n", MarginStop);
fprintf(f, "EPGScanTimeout = %d\n", EPGScanTimeout); fprintf(f, "EPGScanTimeout = %d\n", EPGScanTimeout);
fclose(f); fclose(f);
isyslog(LOG_INFO, "saved setup to %s", FileName); isyslog(LOG_INFO, "saved setup to %s", FileName);