(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:
parent
1734586c24
commit
8b4390dd06
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue