Add missing case for Wii U screen size

My Wii U always uses this value
This commit is contained in:
Clownacy 2020-04-21 23:53:37 +01:00
parent 17fb47bce8
commit abdd7fc771
2 changed files with 2 additions and 0 deletions

View file

@ -183,6 +183,7 @@ RenderBackend_Surface* RenderBackend_Init(const char *window_title, int screen_w
break;
case GX2_TV_SCAN_MODE_720P:
case 4: // Why the hell doesn't WUT have an enum for this? It always returns this value for me!
CalculateViewport(1280, 720, &tv_viewport);
break;

View file

@ -163,6 +163,7 @@ bool WindowBackend_Software_CreateWindow(const char *window_title, int screen_wi
break;
case GX2_TV_SCAN_MODE_720P:
case 4: // Why the hell doesn't WUT have an enum for this? It always returns this value for me!
CalculateViewport(1280, 720, &tv_viewport);
break;