Reduce default min disk space from 6 GB to 5 GB

This commit is contained in:
N00MKRAD
2021-04-25 14:03:57 +02:00
parent 8497f91ce6
commit ea1364acd4

View File

@@ -55,7 +55,7 @@ namespace Flowframes
Logger.Log($"Disk space check for '{drivePath}/': {(mb / 1024f).ToString("0.0")} GB free.", true);
if (!Interpolate.canceled && mb < (Config.GetInt("minDiskSpaceGb", 6) * 1024))
if (!Interpolate.canceled && mb < (Config.GetInt("minDiskSpaceGb", 5) * 1024))
Interpolate.Cancel("Running out of disk space!");
}
catch