mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Making sure any floating point numbers written use a decimal point
This commit is contained in:
parent
5a42f6b29f
commit
daa6799705
@ -664,6 +664,8 @@ Oliver Endriss <o.endriss@gmx.de>
|
||||
DVB cards
|
||||
for improving the firmware of FF DVB cards to allow getting the current STC value
|
||||
even in trick modes
|
||||
for pointing out a problem with the decimal point of the F record in the info file of
|
||||
a recording
|
||||
|
||||
Reinhard Walter Buchner <rw.buchner@freenet.de>
|
||||
for adding some satellites to 'sources.conf'
|
||||
|
3
HISTORY
3
HISTORY
@ -6021,3 +6021,6 @@ Video Disk Recorder Revision History
|
||||
- Fixed the 'VideoOnly' condition in the PlayPes() and PlayTs() calls in
|
||||
cDvbPlayer::Action() (thanks to Reinhard Nissl).
|
||||
- cDevice::PlayTs() now plays as many TS packets as possible in one call.
|
||||
- Making sure any floating point numbers written use a decimal point (thanks to
|
||||
Oliver Endriss for pointing out a problem with the F record in the info file of
|
||||
a recording).
|
||||
|
3
vdr.c
3
vdr.c
@ -22,7 +22,7 @@
|
||||
*
|
||||
* The project's page is at http://www.cadsoft.de/vdr
|
||||
*
|
||||
* $Id: vdr.c 2.6 2009/03/27 15:54:05 kls Exp $
|
||||
* $Id: vdr.c 2.7 2009/04/05 13:21:46 kls Exp $
|
||||
*/
|
||||
|
||||
#include <getopt.h>
|
||||
@ -534,6 +534,7 @@ int main(int argc, char *argv[])
|
||||
isyslog("codeset is '%s' - %s", CodeSet, known ? "known" : "unknown");
|
||||
cCharSetConv::SetSystemCharacterTable(CodeSet);
|
||||
}
|
||||
setlocale(LC_NUMERIC, "C"); // makes sure any floating point numbers written use a decimal point
|
||||
|
||||
// Initialize internationalization:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user