diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-31 12:42:36 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2013-08-31 12:42:36 +0200 |
commit | f52e8759c5a1b462cf1ae116f96128934a559fe7 (patch) | |
tree | e25bf79979b35e2f1a12125a57dfa3f2874cafac | |
parent | 2090ed6f7c5668645bcbeaab73ee68be341349e4 (diff) | |
download | vdr-f52e8759c5a1b462cf1ae116f96128934a559fe7.tar.gz vdr-f52e8759c5a1b462cf1ae116f96128934a559fe7.tar.bz2 |
Fixed wrong initialization of Setup.PositionerSwing
-rw-r--r-- | CONTRIBUTORS | 1 | ||||
-rw-r--r-- | HISTORY | 3 | ||||
-rw-r--r-- | config.c | 4 |
3 files changed, 5 insertions, 3 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 94ded8a2..39aa55fc 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1702,6 +1702,7 @@ Arthur Konovalov <artlov@gmail.com> for reporting references to old *.vdr file names in MANUAL for reporting that the video stream type was set to 2 even if the vpid was 0 for updates to 'sources.conf' + for reporting a wrong initialization of Setup.PositionerSwing Milos Kapoun <m.kapoun@cra.cz> for suggesting to skip code table info in SI data @@ -7901,7 +7901,7 @@ Video Disk Recorder Revision History 1TB (or larger) disks and use them as a RAID-1 (mirrored). That way, if one disk fails, you can replace it without data loss. -2013-08-30: Version 2.1.2 +2013-08-31: Version 2.1.2 - Updated the Finnish OSD texts (thanks to Rolf Ahrenberg). - Fixed displaying DVB subtitles (thanks to Rolf Ahrenberg for helping to debug and @@ -7915,3 +7915,4 @@ Video Disk Recorder Revision History + The debug output now uses some indentation for better structuring. + Fixed handling subtitles encoded as a string of characters (the very first character was always skipped). +- Fixed wrong initialization of Setup.PositionerSwing (reported by Arthur Konovalov). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 3.1 2013/05/23 12:41:06 kls Exp $ + * $Id: config.c 3.2 2013/08/31 12:41:28 kls Exp $ */ #include "config.h" @@ -393,7 +393,7 @@ cSetup::cSetup(void) SiteLat = 0; SiteLon = 0; PositionerSpeed = 15; - PositionerSwing = 65; + PositionerSwing = 650; PositionerLastLon = 0; SetSystemTime = 0; TimeSource = 0; |