From bf822b85ded0e32cd6c4d7495e1b930de8478074 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Thu, 15 Oct 2020 21:14:36 +0200 Subject: [PATCH] Use IsWindows10OrGreater since target SDK is now Windows 10 and remove the year from Windows Server since the different versions can only be distinguished by the build numbers --- indra/llcommon/llsys.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index 54872e86f8..942feb6c22 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -150,13 +150,13 @@ LLOSInfo::LLOSInfo() : #if LL_WINDOWS - if (IsWindowsVersionOrGreater(10, 0, 0)) + if (IsWindows10OrGreater()) { mMajorVer = 10; mMinorVer = 0; if (IsWindowsServer()) { - mOSStringSimple = "Windows Server 2016 "; + mOSStringSimple = "Windows Server "; } else {