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

Closes jp9000/obs-studio#549
This commit is contained in:
nd
2016-05-30 18:51:15 +02:00
committed by jp9000
parent 6ca3cd3504
commit f7ac9258d4

View File

@@ -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;