瀏覽代碼

UI: Fix adv. mode recording settings update bug

The recording settings are updated only when not using the streaming
encoder for recording.
jp9000 11 年之前
父節點
當前提交
77f2fda3ce
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      obs/window-basic-main-outputs.cpp

+ 1 - 1
obs/window-basic-main-outputs.cpp

@@ -385,7 +385,7 @@ inline void AdvancedOutput::UpdateRecordingSettings()
 void AdvancedOutput::Update()
 {
 	UpdateStreamSettings();
-	if (useStreamEncoder && !ffmpegRecording)
+	if (!useStreamEncoder && !ffmpegRecording)
 		UpdateRecordingSettings();
 }