Fix(DOtherSide): Exclude threaded renderer all darwin architectures (#10411)

This commit is contained in:
Mikhail Rogachev 2023-04-25 15:25:31 +04:00 committed by Jonathan Rainville
parent 5ca5882a03
commit 3ce7171b71
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ void dos_qguiapplication_initialize_opengl()
void dos_qguiapplication_try_enable_threaded_renderer()
{
if(QSysInfo::buildCpuArchitecture() == "arm64" && QSysInfo::kernelType() == "darwin" && QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
if(QSysInfo::kernelType() == "darwin" && QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
{
//Threaded renderer is crashing on M1 Macs
return;