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:
parent
dc8652806e
commit
61b69eeed2
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user