diff options
author | XANTRONIX Development | 2022-03-07 11:58:06 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-03-07 11:58:06 -0500 |
commit | 1689abc83e9a23c44d25b68f991ee776ee746ef0 (patch) | |
tree | a7e82feba3357c7222272d2dfdf302ce42b5ae4e | |
parent | 40eea4ea9484a59e83c5a878e5bd869ed301d57e (diff) | |
download | xas-1689abc83e9a23c44d25b68f991ee776ee746ef0.tar.gz xas-1689abc83e9a23c44d25b68f991ee776ee746ef0.tar.bz2 xas-1689abc83e9a23c44d25b68f991ee776ee746ef0.zip |
Ensure voice is set in examples/say.c
-rw-r--r-- | examples/say.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/say.c b/examples/say.c index 6365b02..5cb1c08 100644 --- a/examples/say.c +++ b/examples/say.c @@ -144,6 +144,8 @@ int main(int argc, char **argv) { /* * Time to fill the sample bank, meow! */ + xas_vox_set_voice(voice->ctx, "voice_cmu_us_slt_cg"); + xas_vox_say(vox, "I want to eat your soul."); xas_vox_say(vox, "You don't understand."); xas_vox_say(vox, "I really want to eat your soul."); |