diff options
| author | Jochen Dolze <vdr@dolze.de> | 2010-08-02 22:20:20 +0200 |
|---|---|---|
| committer | Jochen Dolze <vdr@dolze.de> | 2010-08-02 22:20:20 +0200 |
| commit | bdcd398b28d73222ae9aec843f7ef56f63411365 (patch) | |
| tree | 771e2d3d8da8b8e3d6802f734199dd0c88d6e16f /magazine.cpp | |
| parent | f79593139e7c46f7ce92711229485a46fa5d7c58 (diff) | |
| download | vdr-plugin-tvonscreen-bdcd398b28d73222ae9aec843f7ef56f63411365.tar.gz vdr-plugin-tvonscreen-bdcd398b28d73222ae9aec843f7ef56f63411365.tar.bz2 | |
Fixed config logo path bug
Diffstat (limited to 'magazine.cpp')
| -rw-r--r-- | magazine.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/magazine.cpp b/magazine.cpp index b2af77f..ee2df16 100644 --- a/magazine.cpp +++ b/magazine.cpp @@ -1009,11 +1009,11 @@ void magazine::Show(void) delete f4; delete f5; - f1=new anyFont(osd,(round(12*Width) / 720),1); // Sendung - f2=new anyFont(osd,(round(11*Width) / 720),1); // Extra-Info - f3=new anyFont(osd,(round(12*Width) / 720),1); // Sender - f4=new anyFont(osd,(round(11*Width) / 720)); // Tasten - f5=new anyFont(osd,(round(11*Width) / 720)); // Datum + f1=new anyFont(osd,(round(12*Width) / Height),1); // Sendung + f2=new anyFont(osd,(round(11*Width) / Height),1); // Extra-Info + f3=new anyFont(osd,(round(12*Width) / Height),1); // Sender + f4=new anyFont(osd,(round(11*Width) / Height)); // Tasten + f5=new anyFont(osd,(round(11*Width) / Height)); // Datum for (int i=0; i < (int)(sizeof(Areas)/sizeof(tArea)); i++) { |
