mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Force async compile off for macos (#532)
This commit is contained in:
parent
bc104859f3
commit
523a0e1706
1 changed files with 5 additions and 0 deletions
|
@ -1418,7 +1418,12 @@ void GeneralSettings2::HandleGraphicsApiSelection()
|
||||||
{
|
{
|
||||||
// Vulkan
|
// Vulkan
|
||||||
m_gx2drawdone_sync->Disable();
|
m_gx2drawdone_sync->Disable();
|
||||||
|
#if BOOST_OS_MACOS
|
||||||
|
m_async_compile->Disable();
|
||||||
|
m_async_compile->SetValue(false);
|
||||||
|
#else
|
||||||
m_async_compile->Enable();
|
m_async_compile->Enable();
|
||||||
|
#endif
|
||||||
|
|
||||||
m_vsync->AppendString(_("Off"));
|
m_vsync->AppendString(_("Off"));
|
||||||
m_vsync->AppendString(_("Double buffering"));
|
m_vsync->AppendString(_("Double buffering"));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue