浏览代码

obs-filters: Change async delay filter max delay to 20 sec

Closes jp9000/obs-studio#549
nd 9 年之前
父节点
当前提交
f7ac9258d4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/obs-filters/async-delay-filter.c

+ 1 - 1
plugins/obs-filters/async-delay-filter.c

@@ -115,7 +115,7 @@ static obs_properties_t *async_delay_filter_properties(void *data)
 	obs_properties_t *props = obs_properties_create();
 
 	obs_properties_add_int(props, SETTING_DELAY_MS, TEXT_DELAY_MS,
-			0, 6000, 1);
+			0, 20000, 1);
 
 	UNUSED_PARAMETER(data);
 	return props;