From b5993e70b53eb7397fc7af812e737f94513fe3a8 Mon Sep 17 00:00:00 2001 From: Martin Schirrmacher Date: Sun, 17 Nov 2013 16:53:51 +0100 Subject: use : instead of / in aspect --- displaychannel.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'displaychannel.c') 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; -- cgit v1.2.3