From 6971848bbaaf506383fb38dcbaaf2e2eebfa3f1c Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Tue, 31 Aug 2021 11:20:22 +0200 Subject: [PATCH] Fixed broken interp frame amount check --- Code/Main/CreateVideo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Main/CreateVideo.cs b/Code/Main/CreateVideo.cs index a7d263c..f792854 100644 --- a/Code/Main/CreateVideo.cs +++ b/Code/Main/CreateVideo.cs @@ -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;