(GX) Clamp max XFB height on PAL to 574

Official docs say 574 is the max, but libogc says its 576.
This commit is contained in:
ToadKing 2013-02-10 17:18:59 -05:00
parent 1734586c24
commit 8b4390dd06
1 changed files with 1 additions and 1 deletions

View File

@ -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;