mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 23:52:57 +08:00
Use Multicore JIT
This commit is contained in:
parent
f76c6a47d2
commit
ed99f26699
@ -4,6 +4,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
using System.Runtime;
|
||||||
using osu.Framework;
|
using osu.Framework;
|
||||||
using osu.Framework.Platform;
|
using osu.Framework.Platform;
|
||||||
using osu.Game.IPC;
|
using osu.Game.IPC;
|
||||||
@ -15,6 +16,8 @@ namespace osu.Desktop
|
|||||||
[STAThread]
|
[STAThread]
|
||||||
public static int Main(string[] args)
|
public static int Main(string[] args)
|
||||||
{
|
{
|
||||||
|
useMulticoreJit();
|
||||||
|
|
||||||
// Back up the cwd before DesktopGameHost changes it
|
// Back up the cwd before DesktopGameHost changes it
|
||||||
var cwd = Environment.CurrentDirectory;
|
var cwd = Environment.CurrentDirectory;
|
||||||
|
|
||||||
@ -47,5 +50,15 @@ namespace osu.Desktop
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void useMulticoreJit()
|
||||||
|
{
|
||||||
|
var profilesFolder = Path.Combine(Environment.CurrentDirectory, "Profiles");
|
||||||
|
if (!Directory.Exists(profilesFolder))
|
||||||
|
Directory.CreateDirectory(profilesFolder);
|
||||||
|
|
||||||
|
ProfileOptimization.SetProfileRoot(profilesFolder);
|
||||||
|
ProfileOptimization.StartProfile("Startup.Profile");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user