Jelajahi Sumber

UI: Add high frame rates (120, 144, 240) to general video properties

Friedhelm Birth 2 tahun lalu
induk
melakukan
11ae49da73
1 mengubah file dengan 4 tambahan dan 3 penghapusan
  1. 4 3
      UI/properties-view.cpp

+ 4 - 3
UI/properties-view.cpp

@@ -996,9 +996,10 @@ static media_frames_per_second make_fps(uint32_t num, uint32_t den)
 }
 }
 
 
 static const common_frame_rate common_fps[] = {
 static const common_frame_rate common_fps[] = {
-	{"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}},
+	{"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,
 static void UpdateSimpleFPSSelection(OBSFrameRatePropertyWidget *fpsProps,