Skip to content

Commit 523a0e1

Browse files
authored
Force async compile off for macos (#532)
1 parent bc10485 commit 523a0e1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/gui/GeneralSettings2.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,12 @@ void GeneralSettings2::HandleGraphicsApiSelection()
14181418
{
14191419
// Vulkan
14201420
m_gx2drawdone_sync->Disable();
1421+
#if BOOST_OS_MACOS
1422+
m_async_compile->Disable();
1423+
m_async_compile->SetValue(false);
1424+
#else
14211425
m_async_compile->Enable();
1426+
#endif
14221427

14231428
m_vsync->AppendString(_("Off"));
14241429
m_vsync->AppendString(_("Double buffering"));

0 commit comments

Comments
 (0)