Switch: Pixel-accurate should default to aspect-full if it exceeds screen dimensions
Vicki Pfau vi@endrift.com
Mon, 27 May 2019 08:46:26 -0700
1 files changed,
4 insertions(+),
1 deletions(-)
jump to
M
src/platform/switch/main.c
→
src/platform/switch/main.c
@@ -313,7 +313,10 @@ max = floor(1.0 / aspectX);
} else { max = floor(1.0 / aspectY); } - break; + if (max >= 1.0) { + break; + } + // Fall through case SM_AF: if (aspectX > aspectY) { max = 1.0 / aspectX;