Bugfix: ram is already in kB

This commit is contained in:
Laurent Clouet
2019-02-14 08:30:13 +01:00
parent 8f4c899ea2
commit 6d9ca8ef2c

View File

@@ -84,7 +84,7 @@ public class SettingsLoader {
cores = String.valueOf(cores_);
}
if (maxRam_ > 0) {
ram = String.valueOf(maxRam_ * 1000);
ram = String.valueOf(maxRam_);
}
if (maxRenderTime_ > 0) {
renderTime = String.valueOf(maxRenderTime_);