mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15:38 +00:00
(macOS) Disabled the startup animations as they are not working correctly as of SDL 2.0.18
This commit is contained in:
parent
8a2b2ee05c
commit
4bbd0bc1af
|
@ -396,7 +396,15 @@ void ViewController::goToSystemView(SystemData* system, bool playTransition)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if defined(__APPLE__)
|
||||||
|
// The startup animations are very choppy on macOS as of moving to SDL 2.0.18 so the
|
||||||
|
// best user experience is to simply disable them.
|
||||||
|
if (applicationStartup)
|
||||||
|
playViewTransition(true);
|
||||||
|
else if (playTransition)
|
||||||
|
#else
|
||||||
if (playTransition || applicationStartup)
|
if (playTransition || applicationStartup)
|
||||||
|
#endif
|
||||||
playViewTransition();
|
playViewTransition();
|
||||||
else
|
else
|
||||||
playViewTransition(true);
|
playViewTransition(true);
|
||||||
|
|
Loading…
Reference in a new issue