aboutsummaryrefslogtreecommitdiff
path: root/src/engine/condition.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/condition.cpp')
-rw-r--r--src/engine/condition.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/engine/condition.cpp b/src/engine/condition.cpp
index 06591567..316224db 100644
--- a/src/engine/condition.cpp
+++ b/src/engine/condition.cpp
@@ -187,13 +187,9 @@ extern "C" HRESULT ConditionGlobalCheck(
187 HRESULT hr = S_OK; 187 HRESULT hr = S_OK;
188 BOOL fSuccess = TRUE; 188 BOOL fSuccess = TRUE;
189 HRESULT hrError = HRESULT_FROM_WIN32(ERROR_OLD_WIN_VERSION); 189 HRESULT hrError = HRESULT_FROM_WIN32(ERROR_OLD_WIN_VERSION);
190 OS_VERSION osv = OS_VERSION_UNKNOWN;
191 DWORD dwServicePack = 0;
192 190
193 OsGetVersion(&osv, &dwServicePack); 191 // Only run on Windows Vista SP2 or newer, or Windows Server 2008 SP2 or newer.
194 192 if (!::IsWindowsVistaSP2OrGreater())
195 // Always error on Windows 2000 or lower
196 if (OS_VERSION_WIN2000 >= osv)
197 { 193 {
198 fSuccess = FALSE; 194 fSuccess = FALSE;
199 } 195 }