diff --git a/dlls/wineps/ppd.c b/dlls/wineps/ppd.c index e6cf8f36e6b..04991d33337 100644 --- a/dlls/wineps/ppd.c +++ b/dlls/wineps/ppd.c @@ -23,6 +23,7 @@ #include #include #include +#include #include "windef.h" #include "winbase.h" #include "wine/debug.h" @@ -710,8 +711,10 @@ PPD *PSDRV_ParsePPD(char *fname) #define PIA page->ImageableArea if(!PIA) { PIA = HeapAlloc( PSDRV_Heap, 0, sizeof(*PIA) ); + push_lc_numeric("C"); sscanf(tuple.value, "%f%f%f%f", &PIA->llx, &PIA->lly, &PIA->urx, &PIA->ury); + pop_lc_numeric(); } #undef PIA } @@ -733,7 +736,9 @@ PPD *PSDRV_ParsePPD(char *fname) #define PD page->PaperDimension if(!PD) { PD = HeapAlloc( PSDRV_Heap, 0, sizeof(*PD) ); + push_lc_numeric("C"); sscanf(tuple.value, "%f%f", &PD->x, &PD->y); + pop_lc_numeric(); } #undef PD }