Fixed image sequence copy bugs

This commit is contained in:
N00MKRAD
2021-03-14 20:34:35 +01:00
parent abeb570f22
commit 7a379a6d68
2 changed files with 4 additions and 4 deletions

View File

@@ -138,8 +138,8 @@ namespace Flowframes.Main
if (Interpolate.canceled) return;
if (i >= frameFilesWithoutLast.Length) break;
if (debug && i == startIndex)
fileContent += $"# NEW THREAD - {startIndex} to {startIndex + count}\n";
// if (debug && i == startIndex)
// fileContent += $"# NEW THREAD - {startIndex} to {startIndex + count}\n";
string inputFilenameNoExt = Path.GetFileNameWithoutExtension(frameFilesWithoutLast[i].Name);
int dupesAmount = dupesDict.ContainsKey(inputFilenameNoExt) ? dupesDict[inputFilenameNoExt] : 0;