diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-17 16:53:51 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-17 16:53:51 +0100 |
commit | b5993e70b53eb7397fc7af812e737f94513fe3a8 (patch) | |
tree | 50221d9280ead35358f3fb0fb21851e598d16859 /displaychannel.c | |
parent | 4f59b0e51a3abf163537a7f69e6e317477a3c717 (diff) | |
download | skin-flatplus-b5993e70b53eb7397fc7af812e737f94513fe3a8.tar.gz skin-flatplus-b5993e70b53eb7397fc7af812e737f94513fe3a8.tar.bz2 |
use : instead of / in aspect
Diffstat (limited to 'displaychannel.c')
-rw-r--r-- | displaychannel.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/displaychannel.c b/displaychannel.c index c6eb9d7e..128fa780 100644 --- a/displaychannel.c +++ b/displaychannel.c @@ -202,11 +202,11 @@ void cFlatDisplayChannel::ChannelIconsDraw(const cChannel *Channel, bool Resolut if( Config.ResolutionAspectShow && Resolution && !isRadioChannel && screenWidth > 0 ) { cString asp = ""; if( screenAspect == 4.0/3.0 ) - asp = "4/3"; + asp = "4:3"; else if( screenAspect == 16.0/9.0 ) - asp = "16/9"; + asp = "16:9"; else if( screenAspect == 2.21 ) - asp = "2.21/1"; + asp = "2.21:1"; cString resasp = cString::sprintf("%dx%d %s", screenWidth, screenHeight, *asp); int w = fontSml->Width(*resasp); left -= w; |