We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 918e293 commit f6f02caCopy full SHA for f6f02ca
src/Snap.Hutao.Remastered.Native/HutaoNative.cpp
@@ -163,7 +163,7 @@ HRESULT __stdcall HutaoNative::IsCurrentWindowsVersionSupported(BOOL* isSupporte
163
HutaoPrivateWindowsVersion winver;
164
GetWindowsVersion(&winver);
165
166
- if (winver.major >= 10 && winver.minor >= 0 && winver.build >= 19045 && winver.revision >= 5371)
+ if (winver.major > 10 || winver.minor > 0 || winver.build > 19045 || winver.revision >= 5371)
167
{
168
*isSupported = TRUE;
169
return S_OK;
0 commit comments