Skip to content

Commit

Permalink
Fix(DOtherSide): Exclude threaded renderer all darwin architectures (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
MishkaRogachev authored Apr 25, 2023
1 parent 0009ebd commit 579ca26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/DOtherSide/lib/src/DOtherSide.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,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;
Expand Down

0 comments on commit 579ca26

Please sign in to comment.