mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-03-06 08:40:49 +00:00
[common] properly detect all versions of Windows 8
This commit is contained in:
parent
5db4c32035
commit
b8203bec53
2 changed files with 4 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
B1-55-g7469f54122+1
|
||||
B1-55-g5db4c32035+1
|
|
@ -60,5 +60,7 @@ inline static BOOL CompareWindowsVersion(DWORD dwMajorVersion, DWORD dwMinorVers
|
|||
|
||||
bool IsWindows8()
|
||||
{
|
||||
return CompareWindowsVersion(6, 3) == TRUE;
|
||||
return
|
||||
(CompareWindowsVersion(6, 3) == TRUE) ||
|
||||
(CompareWindowsVersion(6, 2) == TRUE);
|
||||
}
|
Loading…
Add table
Reference in a new issue