mirror of
https://github.com/ppy/osu.git
synced 2024-11-14 15:57:24 +08:00
Merge pull request #26511 from bdach/i-wish-i-were-a-carpenter-right-now
Fix broken windows installer
This commit is contained in:
commit
779e509922
@ -30,12 +30,19 @@ namespace osu.Desktop
|
|||||||
[STAThread]
|
[STAThread]
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
{
|
{
|
||||||
// NVIDIA profiles are based on the executable name of a process.
|
/*
|
||||||
// Lazer and stable share the same executable name.
|
* WARNING: DO NOT PLACE **ANY** CODE ABOVE THE FOLLOWING BLOCK!
|
||||||
// Stable sets this setting to "Off", which may not be what we want, so let's force it back to the default "Auto" on startup.
|
*
|
||||||
NVAPI.ThreadedOptimisations = NvThreadControlSetting.OGL_THREAD_CONTROL_DEFAULT;
|
* Logic handling Squirrel MUST run before EVERYTHING if you do not want to break it.
|
||||||
|
* To be more precise: Squirrel is internally using a rather... crude method to determine whether it is running under NUnit,
|
||||||
// run Squirrel first, as the app may exit after these run
|
* namely by checking loaded assemblies:
|
||||||
|
* https://github.com/clowd/Clowd.Squirrel/blob/24427217482deeeb9f2cacac555525edfc7bd9ac/src/Squirrel/SimpleSplat/PlatformModeDetector.cs#L17-L32
|
||||||
|
*
|
||||||
|
* If it finds ANY assembly from the ones listed above - REGARDLESS of the reason why it is loaded -
|
||||||
|
* the app will then do completely broken things like:
|
||||||
|
* - not creating system shortcuts (as the logic is if'd out if "running tests")
|
||||||
|
* - not exiting after the install / first-update / uninstall hooks are ran (as the `Environment.Exit()` calls are if'd out if "running tests")
|
||||||
|
*/
|
||||||
if (OperatingSystem.IsWindows())
|
if (OperatingSystem.IsWindows())
|
||||||
{
|
{
|
||||||
var windowsVersion = Environment.OSVersion.Version;
|
var windowsVersion = Environment.OSVersion.Version;
|
||||||
@ -59,6 +66,11 @@ namespace osu.Desktop
|
|||||||
setupSquirrel();
|
setupSquirrel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NVIDIA profiles are based on the executable name of a process.
|
||||||
|
// Lazer and stable share the same executable name.
|
||||||
|
// Stable sets this setting to "Off", which may not be what we want, so let's force it back to the default "Auto" on startup.
|
||||||
|
NVAPI.ThreadedOptimisations = NvThreadControlSetting.OGL_THREAD_CONTROL_DEFAULT;
|
||||||
|
|
||||||
// Back up the cwd before DesktopGameHost changes it
|
// Back up the cwd before DesktopGameHost changes it
|
||||||
string cwd = Environment.CurrentDirectory;
|
string cwd = Environment.CurrentDirectory;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user