From 2e61bafb1eca218f4d325f0986432b85db764e12 Mon Sep 17 00:00:00 2001 From: SuperrSonic Date: Thu, 5 Feb 2015 16:19:00 -0400 Subject: [PATCH] (GX) Use custom viewports in 240p --- gfx/drivers/gx_gfx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/drivers/gx_gfx.c b/gfx/drivers/gx_gfx.c index 13ae141a15..aaadf41cf4 100644 --- a/gfx/drivers/gx_gfx.c +++ b/gfx/drivers/gx_gfx.c @@ -717,7 +717,7 @@ static void gx_resize(void *data) #endif GX_SetDispCopyGamma(g_extern.console.screen.gamma_correction); - if (gx->keep_aspect && gx_mode.efbHeight >= 480) /* ignore this for custom resolutions */ + if (gx->keep_aspect && gx_mode.efbHeight >= 240) /* ignore this for custom resolutions */ { float desired_aspect = g_extern.system.aspect_ratio; if (desired_aspect == 0.0)