Fixed broken interp frame amount check

This commit is contained in:
N00MKRAD
2021-08-31 11:20:22 +02:00
parent b36052e943
commit 6971848bba

View File

@@ -42,7 +42,7 @@ namespace Flowframes.Main
return;
}
if (IoUtils.GetAmountOfFiles(path, false, "*.*" + I.current.interpExt) <= 1)
if (IoUtils.GetAmountOfFiles(path, false, "*" + I.current.interpExt) <= 1)
{
I.Cancel("Output folder does not contain frames - An error must have occured during interpolation!", AiProcess.hasShownError);
return;