Try addressing wandering RAM slider

This commit is contained in:
DaCool
2022-02-19 16:51:06 +00:00
committed by Sheepit Renderfarm
parent 68dfb4d419
commit 566e736dd6

View File

@@ -481,7 +481,7 @@ public class SettingsLoader {
} }
if (config.getMaxAllowedMemory() == -1 && ram != null) { if (config.getMaxAllowedMemory() == -1 && ram != null) {
config.setMaxAllowedMemory(Utils.parseNumber(ram.getValue()) / 1024); // internal ram value is in KiB config.setMaxAllowedMemory(Utils.parseNumber(ram.getValue()) / 1000); // internal ram value is in KiB
} }
if (config.getMaxRenderTime() == -1 && renderTime != null) { if (config.getMaxRenderTime() == -1 && renderTime != null) {