From a599dd50f607ae254333d4fc6d38fc627566292e Mon Sep 17 00:00:00 2001 From: Friedhelm Birth Date: Fri, 11 Aug 2023 14:25:01 +0200 Subject: [PATCH] UI: Add high frame rate 119.88 fps to capture device properties --- UI/properties-view.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/UI/properties-view.cpp b/UI/properties-view.cpp index ee16827bb..7d8838b36 100644 --- a/UI/properties-view.cpp +++ b/UI/properties-view.cpp @@ -996,10 +996,13 @@ static media_frames_per_second make_fps(uint32_t num, uint32_t den) } static const common_frame_rate common_fps[] = { - {"240", {240, 1}}, {"144", {144, 1}}, {"120", {120, 1}}, - {"60", {60, 1}}, {"59.94", {60000, 1001}}, {"50", {50, 1}}, - {"48", {48, 1}}, {"30", {30, 1}}, {"29.97", {30000, 1001}}, - {"25", {25, 1}}, {"24", {24, 1}}, {"23.976", {24000, 1001}}, + {"240", {240, 1}}, {"144", {144, 1}}, + {"120", {120, 1}}, {"119.88", {120000, 1001}}, + {"60", {60, 1}}, {"59.94", {60000, 1001}}, + {"50", {50, 1}}, {"48", {48, 1}}, + {"30", {30, 1}}, {"29.97", {30000, 1001}}, + {"25", {25, 1}}, {"24", {24, 1}}, + {"23.976", {24000, 1001}}, }; static void UpdateSimpleFPSSelection(OBSFrameRatePropertyWidget *fpsProps,