obs-text: Change file update interval to 1 sec (from 2)

This commit is contained in:
jp9000
2016-09-28 01:57:44 -07:00
parent 8b877f7c36
commit 32378124af

View File

@@ -742,7 +742,7 @@ inline void TextSource::Tick(float seconds)
update_time_elapsed += seconds;
if (update_time_elapsed >= 2.0f) {
if (update_time_elapsed >= 1.0f) {
time_t t = get_modified_timestamp(file.c_str());
update_time_elapsed = 0.0f;