UI: Fix adv. mode recording settings update bug

The recording settings are updated only when not using the streaming
encoder for recording.
master
jp9000 2015-02-15 22:05:08 -08:00
parent ee4f8443b1
commit 77f2fda3ce
1 changed files with 1 additions and 1 deletions

View File

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