bool function isEqual(float a, float b) {
float eps = 1e-6 * max(fabs(a), fabs(b));
return fabs(a - b) < eps;
}
- string _value = installPath.OpenSubKey(@"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Death Stranding Directors Cut_is1").GetValue("InstallLocation")?.ToString() ?? "default";
+ string _value = installPath
+ .OpenSubKey(@"SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Death Stranding Directors Cut_is1")
+ ?.GetValue("InstallLocation")
+ ?.ToString()
+ ?? "default";