summaryrefslogtreecommitdiff
path: root/device.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2009-06-01 14:56:28 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2009-06-01 14:56:28 +0200
commite639e3a76ad6c8d721ab3f827bd7b3847e351c05 (patch)
tree38ea5b358c89084d581071a189692b8b26c3283f /device.c
parent78d2fd3d0e2a69c27581afe710f5598862a750be (diff)
downloadvdr-e639e3a76ad6c8d721ab3f827bd7b3847e351c05.tar.gz
vdr-e639e3a76ad6c8d721ab3f827bd7b3847e351c05.tar.bz2
Improved cDvbDevice::GetOsdSize()
Diffstat (limited to 'device.c')
-rw-r--r--device.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/device.c b/device.c
index 50a63d54..1cd30a87 100644
--- a/device.c
+++ b/device.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: device.c 2.19 2009/05/09 10:02:58 kls Exp $
+ * $Id: device.c 2.20 2009/06/01 14:08:45 kls Exp $
*/
#include "device.h"
@@ -389,11 +389,11 @@ eVideoSystem cDevice::GetVideoSystem(void)
return vsPAL;
}
-void cDevice::GetVideoSize(int &Width, int &Height, eVideoAspect &Aspect)
+void cDevice::GetVideoSize(int &Width, int &Height, double &Aspect)
{
Width = 0;
Height = 0;
- Aspect = va4_3;
+ Aspect = 1.0;
}
void cDevice::GetOsdSize(int &Width, int &Height, double &Aspect)