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

@@ -71,7 +71,7 @@ public class Mac extends OS {
@Override public boolean isSupported() {
String[] ver = operatingSystem.getVersionInfo().getVersion().split("\\.");
int majorVer = Integer.parseInt(ver[0]), minorVer = Integer.parseInt(ver[1]);
return (majorVer == 10 && minorVer >= 13) || majorVer >= 11;
return super.isSupported() && ((majorVer == 10 && minorVer >= 13) || majorVer >= 11);
}
@Override public String getCUDALib() {