From 1d63b75febbcb9c125f6b8df352bfdc0c5d5105f Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Sat, 16 May 2026 00:50:09 +0200 Subject: [PATCH] Fix batch processing outPath --- CodeLegacy/Data/InterpSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeLegacy/Data/InterpSettings.cs b/CodeLegacy/Data/InterpSettings.cs index baea1b9..f491911 100644 --- a/CodeLegacy/Data/InterpSettings.cs +++ b/CodeLegacy/Data/InterpSettings.cs @@ -106,7 +106,7 @@ namespace Flowframes return; inPath = inputPath; - // outPath = (Config.GetInt("outFolderLoc") == 0) ? inputPath.GetParentDir() : Config.Get("custOutDir").Trim(); + outPath = (Config.GetInt("outFolderLoc") == 0) ? inputPath.GetParentDir() : Config.Get("custOutDir").Trim(); // This used to be commented out, idk why. Required for batch mode to set outPath. tempFolder = InterpolateUtils.GetTempFolderLoc(inPath, outPath); framesFolder = Path.Combine(tempFolder, Paths.framesDir); interpFolder = Path.Combine(tempFolder, Paths.interpDir);