diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2024-06-20 23:29:38 +0300 |
---|---|---|
committer | Andrey Kleshchev <117672381+akleshchev@users.noreply.github.com> | 2024-06-21 11:46:25 +0300 |
commit | e4fd1bd71ef31b34ea92e2b5b5be4e08aad42269 (patch) | |
tree | 6d3c492e0045eb5512406cfcbffba503d36b3cea /indra/llcommon | |
parent | 68963019cd62fedf94ade25c83f22804ec237818 (diff) |
viewer#1808 Use bugsplat's setAttribute for app state
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llsys.cpp | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 496ec0d869..cfb05873df 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -226,16 +226,8 @@ LLOSInfo::LLOSInfo() : if (mBuild >= 22000) { // At release Windows 11 version was 10.0.22000.194 - // Windows 10 version was 10.0.19043.1266 - // There is no warranty that Win10 build won't increase, - // so until better solution is found or Microsoft updates - // SDK with IsWindows11OrGreater(), indicate "10/11" - // - // Current alternatives: - // Query WMI's Win32_OperatingSystem for OS string. Slow - // and likely to return 'compatibility' string. - // Check presence of dlls/libs or may be their version. - mOSStringSimple = "Microsoft Windows 10/11 "; + // According to microsoft win 10 won't ever get that far. + mOSStringSimple = "Microsoft Windows 11 "; } } |