minor change to disk space check loop to avoid throwing errors in VS

This commit is contained in:
N00MKRAD
2021-03-22 21:40:21 +01:00
parent fbb590b46c
commit 7b261382f4

View File

@@ -48,6 +48,9 @@ namespace Flowframes
{
try
{
if (Interpolate.current.tempFolder.Length < 3)
return;
string drivePath = Interpolate.current.tempFolder.Substring(0, 2);
long mb = IOUtils.GetDiskSpace(Interpolate.current.tempFolder);