diff options
Diffstat (limited to 'load-git.c')
-rw-r--r-- | load-git.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/load-git.c b/load-git.c index be0e3539c..e61a0ca13 100644 --- a/load-git.c +++ b/load-git.c @@ -357,6 +357,10 @@ static void parse_sample_keyvalue(void *_sample, const char *key, const char *va sample->ndl = get_duration(value); return; } + if (!strcmp(key, "tts")) { + sample->tts = get_duration(value); + return; + } if (!strcmp(key, "in_deco")) { sample->in_deco = atoi(value); return; |