From 5d5029de59ffd950a5cff8acb2f756adcd0e258e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 16 May 2021 14:45:53 -0500 Subject: [PATCH] Increase limit for the --fps option --- app/cli/commandlineparser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cli/commandlineparser.cpp b/app/cli/commandlineparser.cpp index aa7af24c..99cf860f 100644 --- a/app/cli/commandlineparser.cpp +++ b/app/cli/commandlineparser.cpp @@ -350,8 +350,8 @@ void StreamCommandLineParser::parse(const QStringList &args, StreamingPreference // Resolve --fps option if (parser.isSet("fps")) { preferences->fps = parser.getIntOption("fps"); - if (!inRange(preferences->fps, 30, 120)) { - parser.showError("FPS must be in range: 30 - 120"); + if (!inRange(preferences->fps, 30, 240)) { + parser.showError("FPS must be in range: 30 - 240"); } }