From 04c126123f0acf7094c3cbc11c6bc1d30bdbaf9b Mon Sep 17 00:00:00 2001 From: SuperrSonic Date: Sun, 10 Aug 2014 17:03:18 -0400 Subject: [PATCH] Made viWidth point to config --- gx/gx_video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gx/gx_video.c b/gx/gx_video.c index b4b7e93401..63e7575051 100644 --- a/gx/gx_video.c +++ b/gx/gx_video.c @@ -124,10 +124,10 @@ void gx_set_video_mode(void *data, unsigned fbWidth, unsigned lines) VISetBlack(true); VIFlush(); viHeightMultiplier = 1; - viWidth = 640; + viWidth = g_settings.video.viwidth; #if defined(HW_RVL) - if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) - viWidth = 678; + //if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) + //viWidth = 704; progressive = CONF_GetProgressiveScan() > 0 && VIDEO_HaveComponentCable(); switch (CONF_GetVideo())