0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

obs-x264: Fix settings string typo

This is why macros should be used for settings strings.

(Commit edited and formatted by Jim: separated this code from the
following commit, and gave it a proper commit message)

Closes jp9000/obs-studio#567
This commit is contained in:
SuslikV 2016-07-18 07:06:05 -07:00 committed by jp9000
parent cf983b7ccf
commit 2fb1d18056

View File

@ -152,7 +152,7 @@ static bool rate_control_modified(obs_properties_t *ppts, obs_property_t *p,
obs_property_set_visible(p, !rc_crf);
p = obs_properties_get(ppts, "use_bufsize");
obs_property_set_visible(p, !rc_crf);
p = obs_properties_get(ppts, "buffse_size");
p = obs_properties_get(ppts, "buffer_size");
obs_property_set_visible(p, !rc_crf);
return true;
}