Util: Increase memory required to not be slow

This commit is contained in:
zzz
2023-02-11 04:43:31 -05:00
parent 21d39ebc36
commit 5d3dffbaa0

View File

@@ -81,7 +81,7 @@ public abstract class SystemVersion {
(_isGentoo && GENTOO_USER.equals(System.getProperty("user.name"))));
_isService = _isLinuxService || _isWindowsService;
// we assume the Apple M1 is not slow, however isSlow() below will still return true until we have a jbigi
_isSlow = _isAndroid || _isApache || (_isArm && !_isMac) || _isGNU || _isZero || getMaxMemory() < 48*1024*1024L;
_isSlow = _isAndroid || _isApache || (_isArm && !_isMac) || _isGNU || _isZero || getMaxMemory() < 96*1024*1024L;
int sdk = 0;
if (_isAndroid) {