diff --git a/Code/Main/InterpolateUtils.cs b/Code/Main/InterpolateUtils.cs index 7764ff1..ba99a85 100644 --- a/Code/Main/InterpolateUtils.cs +++ b/Code/Main/InterpolateUtils.cs @@ -116,7 +116,8 @@ namespace Flowframes.Main if (passes && fpsOut.GetFloat() < 1f || fpsOut.GetFloat() > 1000f) { - ShowMessage($"Invalid output frame rate ({fpsOut.GetFloat()}).\nMust be 1-1000."); + string imgSeqNote = isFile ? "" : "\n\nWhen using an image sequence as input, you always have to specify the frame rate manually."; + ShowMessage($"Invalid output frame rate ({fpsOut.GetFloat()}).\nMust be 1-1000.{imgSeqNote}"); passes = false; }