From 88a8b528e20013c0aa3cc6bcd9659b0b5ddd9170 Mon Sep 17 00:00:00 2001 From: Daniel Wilhelm Date: Fri, 18 Apr 2014 17:20:07 +0200 Subject: 5.4 --- lib/shadow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/shadow.cpp') diff --git a/lib/shadow.cpp b/lib/shadow.cpp index f4d7f3af..ba4e1f5e 100644 --- a/lib/shadow.cpp +++ b/lib/shadow.cpp @@ -27,7 +27,7 @@ bool runningWOW64() //test if process is running under WOW64 (reference http://m { BOOL isWow64 = FALSE; if (isWow64Process(::GetCurrentProcess(), &isWow64)) - return isWow64 == TRUE; + return isWow64 != FALSE; } return false; -- cgit