From cf902c0549696b262c4ce39f7e0f4904559d51d2 Mon Sep 17 00:00:00 2001 From: N00MKRAD Date: Thu, 4 Feb 2021 22:50:07 +0100 Subject: [PATCH] Raised hard framerate limit from 500 to 1000 --- Code/Main/InterpolateUtils.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Main/InterpolateUtils.cs b/Code/Main/InterpolateUtils.cs index da538bd..970a7e1 100644 --- a/Code/Main/InterpolateUtils.cs +++ b/Code/Main/InterpolateUtils.cs @@ -268,9 +268,9 @@ namespace Flowframes.Main ShowMessage("Invalid output frame rate!\nGIF does not properly support frame rates above 40 FPS.\nPlease use MP4, WEBM or another video format."); passes = false; } - if (passes && fpsOut < 1 || fpsOut > 500) + if (passes && fpsOut < 1 || fpsOut > 1000) { - ShowMessage("Invalid output frame rate - Must be 1-500."); + ShowMessage("Invalid output frame rate - Must be 1-1000."); passes = false; } if (!passes)