From 4c3926246ef7f9aaa3b0320400025fb174f654f3 Mon Sep 17 00:00:00 2001 From: Andrew Straw Date: Wed, 28 Sep 2022 19:19:08 +0200 Subject: [PATCH] ci2-remote-control: default video framerate is unlimited --- ci2-remote-control/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci2-remote-control/src/lib.rs b/ci2-remote-control/src/lib.rs index 42d9710a8..781df8d67 100644 --- a/ci2-remote-control/src/lib.rs +++ b/ci2-remote-control/src/lib.rs @@ -67,7 +67,7 @@ impl RecordingFrameRate { impl Default for RecordingFrameRate { fn default() -> RecordingFrameRate { - RecordingFrameRate::Fps20 + RecordingFrameRate::Unlimited } }