Exclude 32bit from supported systems

This commit is contained in:
DaCoolX
2021-11-08 19:53:56 +01:00
parent 1bf0f82e1f
commit 4caba3440a
3 changed files with 3 additions and 3 deletions

View File

@@ -76,7 +76,7 @@ public class Windows extends OS {
@Override public boolean isSupported() {
String ver = operatingSystem.getVersionInfo().getVersion();
return ver.equals("8.1") || ver.equals("10") || ver.equals("11");
return super.isSupported() && (ver.equals("8.1") || ver.equals("10") || ver.equals("11"));
}
int getPriorityClass(int priority) {