1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

rsx/overlays: Force disable rounded rectangles on macOS

This commit is contained in:
kd-11 2023-02-04 23:40:20 +03:00 committed by kd-11
parent dc8652806e
commit 61b69eeed2

View File

@ -940,7 +940,11 @@ namespace rsx
{
compiled_resources.clear();
if (radius == 0 || radius > (w / 2))
if (radius == 0 ||
#ifdef __APPLE__
true ||
#endif
radius > (w / 2))
{
// Invalid radius
compiled_resources = overlay_element::get_compiled();