tvOS: Fix scaling for 720p

This commit is contained in:
Eric Warmenhoven 2024-05-19 14:26:13 -04:00 committed by LibretroAdmin
parent 329cf5cbff
commit caeb3fafdc

View file

@ -813,6 +813,10 @@ float cocoa_screen_get_native_scale(void)
ret = screen.scale;
}
#if TARGET_OS_TV
if (ret < 1.0f)
ret = 1.0f;
#endif
return ret;
}
#endif