[CHG] Adjusted the visible screen width for 4:3 screens also, circles should now look like circles...

This commit is contained in:
Xane 2009-09-01 00:19:00 +00:00
parent 9373faaf5e
commit 3d12a4f77e

View file

@ -62,10 +62,13 @@ int GRRLIB_Init (void) {
break; break;
} }
// Widescreen patch by CashMan's Productions (http://www.CashMan-Productions.fr.nf) // 16:9 and 4:3 Screen Adjustment
if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) { if (CONF_GetAspectRatio() == CONF_ASPECT_16_9) {
rmode->viWidth = 678; rmode->viWidth = 678;
rmode->viXOrigin = (VI_MAX_WIDTH_NTSC - 678)/2; rmode->viXOrigin = (VI_MAX_WIDTH_NTSC - 678)/2;
} else { // 4:3
rmode->viWidth = 672;
rmode->viXOrigin = (VI_MAX_WIDTH_NTSC - 672)/2;
} }
VIDEO_Configure(rmode); VIDEO_Configure(rmode);