diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/llcommon/llsys.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 4e61fb8a58..94f669b0f9 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -140,7 +140,13 @@ LLOSInfo::LLOSInfo() :  #if LL_WINDOWS -	if (IsWindowsVersionOrGreater(10, 0, 0)) +    if (IsWindowsVersionOrGreater(11, 0, 0)) +    { +        mMajorVer = 11; +        mMinorVer = 0; +        mOSStringSimple = "Microsoft Windows 11 "; +    } +    else if (IsWindows10OrGreater())  	{  		mMajorVer = 10;  		mMinorVer = 0; | 
