From 395bdf8151436b30abaed6803e0d66c0925233b4 Mon Sep 17 00:00:00 2001 From: n00mkrad <61149547+n00mkrad@users.noreply.github.com> Date: Sun, 21 Dec 2025 15:25:21 +0100 Subject: [PATCH] Remove references to removed CheckEncoderValid method --- CodeLegacy/Main/InterpolateSteps.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CodeLegacy/Main/InterpolateSteps.cs b/CodeLegacy/Main/InterpolateSteps.cs index a903613..0f951a0 100644 --- a/CodeLegacy/Main/InterpolateSteps.cs +++ b/CodeLegacy/Main/InterpolateSteps.cs @@ -83,8 +83,6 @@ namespace Flowframes.Main return; } - if (Config.GetBool(Config.Key.sbsAllowAutoEnc) && !(await InterpolateUtils.CheckEncoderValid())) return; - if (canceled) return; Program.mainForm.SetStatus("Running AI..."); await RunAi(currentSettings.interpFolder, currentSettings.ai, true); @@ -109,8 +107,6 @@ namespace Flowframes.Main } } - if (!(await InterpolateUtils.CheckEncoderValid())) return; - string[] outFrames = IoUtils.GetFilesSorted(currentSettings.interpFolder, currentSettings.interpExt); if (outFrames.Length > 0 && !IoUtils.CheckImageValid(outFrames[0]))