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

@@ -39,7 +39,7 @@ public abstract class OS {
public abstract String name();
public boolean isSupported() { return true; }
public boolean isSupported() { return "64bit".equals(getCPU().arch()); }
/** Get the full version of the os.
* For example windows, should give "windows 8.1"