From f0662c9d37a9adf3cbfb2b6f2ecf7ea4b79b888e Mon Sep 17 00:00:00 2001 From: dborth Date: Wed, 22 Oct 2008 18:52:51 +0000 Subject: [PATCH] widescreen fix --- source/ngc/video.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/ngc/video.cpp b/source/ngc/video.cpp index 7c7339d..8b32834 100644 --- a/source/ngc/video.cpp +++ b/source/ngc/video.cpp @@ -3,7 +3,8 @@ * * softdev July 2006 * crunchy2 May 2007 - * Michniewski 2008 + * Michniewski 2008 + * Tantric October 2008 * * video.cpp * @@ -757,7 +758,7 @@ update_video (int width, int height) // aspect ratio scaling (change width scale) // yes its pretty cheap and ugly, but its easy! if (GCSettings.widescreen) - xscale -= (4.0*yscale)/9; + xscale = (3*xscale)/4; xscale *= zoom_level; yscale *= zoom_level;