From 2ffdd76b7cafe645e8634305ec9b65273d149be0 Mon Sep 17 00:00:00 2001 From: dborth Date: Wed, 2 Jun 2010 16:52:04 +0000 Subject: [PATCH] fix for issue 506 --- source/video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/video.cpp b/source/video.cpp index ae9759a..c5b6724 100644 --- a/source/video.cpp +++ b/source/video.cpp @@ -760,7 +760,7 @@ update_video (int width, int height) else // unfiltered and filtered mode { xscale = 320; - yscale = (vheight > (vmode->efbHeight/2)) ? (vheight / 2) : vheight; + yscale = vmode->efbHeight/2; } // match the original console's width for "widescreen" to prevent flickering