mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-06 00:59:18 +00: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();
|
compiled_resources.clear();
|
||||||
|
|
||||||
if (radius == 0 || radius > (w / 2))
|
if (radius == 0 ||
|
||||||
|
#ifdef __APPLE__
|
||||||
|
true ||
|
||||||
|
#endif
|
||||||
|
radius > (w / 2))
|
||||||
{
|
{
|
||||||
// Invalid radius
|
// Invalid radius
|
||||||
compiled_resources = overlay_element::get_compiled();
|
compiled_resources = overlay_element::get_compiled();
|
||||||
|
Loading…
Reference in New Issue
Block a user