Do not use Multicore JIT on Mono

This commit is contained in:
TocoToucan
2018-01-24 22:07:14 +03:00
committed by Dean Herbert
parent ed99f26699
commit 714d7b4477

View File

@ -16,6 +16,7 @@ namespace osu.Desktop
[STAThread]
public static int Main(string[] args)
{
if (!RuntimeInfo.IsMono)
useMulticoreJit();
// Back up the cwd before DesktopGameHost changes it
@ -47,6 +48,7 @@ namespace osu.Desktop
break;
}
}
return 0;
}
}