|
|
@ -275,8 +275,10 @@ static bool INeedsWin10CursorHack() |
|
|
|
// According to Chromium, Microsoft will be fixing the cursor bug in the next build
|
|
|
|
// According to Chromium, Microsoft will be fixing the cursor bug in the next build
|
|
|
|
// of Windows 10, so we only need to test for the dreaded 2017 FCU...
|
|
|
|
// of Windows 10, so we only need to test for the dreaded 2017 FCU...
|
|
|
|
// Reference: https://bugs.chromium.org/p/chromium/issues/detail?id=781182#c15
|
|
|
|
// Reference: https://bugs.chromium.org/p/chromium/issues/detail?id=781182#c15
|
|
|
|
|
|
|
|
// UPDATE: Bug is still present in the April 2018 Update (build 17134)...
|
|
|
|
|
|
|
|
// so this bandage will now be applied to anything 2017 FCU and later :(
|
|
|
|
const RTL_OSVERSIONINFOW& version = hsGetWindowsVersion(); |
|
|
|
const RTL_OSVERSIONINFOW& version = hsGetWindowsVersion(); |
|
|
|
return version.dwMajorVersion == 10 && version.dwBuildNumber == 16299; |
|
|
|
return version.dwMajorVersion == 10 && version.dwBuildNumber >= 16299; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#endif // HS_BUILD_FOR_WIN32
|
|
|
|
#endif // HS_BUILD_FOR_WIN32
|
|
|
|