summaryrefslogtreecommitdiff
path: root/dxr3device.c
diff options
context:
space:
mode:
Diffstat (limited to 'dxr3device.c')
-rw-r--r--dxr3device.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/dxr3device.c b/dxr3device.c
index 884ad18..ae7390d 100644
--- a/dxr3device.c
+++ b/dxr3device.c
@@ -20,6 +20,8 @@
*
*/
+#include <linux/em8300.h>
+
#include "dxr3device.h"
#include "dxr3configdata.h"
#include "dxr3interface.h"
@@ -327,7 +329,8 @@ int cDxr3Device::PlayAudio(const uchar *Data, int Length, uchar Id)
// ==================================
void cDxr3Device::SetVideoFormat(bool VideoFormat16_9)
{
- // Do we need this function?
+ cDxr3Interface::Instance().SetAspectRatio(
+ VideoFormat16_9 ? EM8300_ASPECTRATIO_16_9 : EM8300_ASPECTRATIO_4_3);
}
// ==================================