From 8b4390dd065626b0b6a65594b8d21a6d95f763c7 Mon Sep 17 00:00:00 2001 From: ToadKing Date: Sun, 10 Feb 2013 17:18:59 -0500 Subject: [PATCH] (GX) Clamp max XFB height on PAL to 574 Official docs say 574 is the max, but libogc says its 576. --- gx/gx_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gx/gx_video.c b/gx/gx_video.c index a1b9246cc1..25cb678a86 100644 --- a/gx/gx_video.c +++ b/gx/gx_video.c @@ -121,7 +121,7 @@ void gx_set_video_mode(unsigned fbWidth, unsigned lines) { case VI_PAL: max_width = VI_MAX_WIDTH_PAL; - max_height = VI_MAX_HEIGHT_PAL; + max_height = /* VI_MAX_HEIGHT_PAL */ 574; break; case VI_MPAL: max_width = VI_MAX_WIDTH_MPAL;