diff options
author | XANTRONIX Development | 2022-03-01 15:20:18 -0500 |
---|---|---|
committer | XANTRONIX Development | 2022-03-01 15:20:18 -0500 |
commit | 592f32327cc6c22f51f5a878c94673d8873fe21c (patch) | |
tree | aa9ed589e4866d073977e3f9961fb675bd8f56cf /src | |
parent | 103fe7383ccbccdcef4f47a91c5c9af9eb6fb24c (diff) | |
download | xas-592f32327cc6c22f51f5a878c94673d8873fe21c.tar.gz xas-592f32327cc6c22f51f5a878c94673d8873fe21c.tar.bz2 xas-592f32327cc6c22f51f5a878c94673d8873fe21c.zip |
Ensure call to xas_vox_generate() after phrase
Diffstat (limited to 'src')
-rw-r--r-- | src/script.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/script.c b/src/script.c index 51db3da..8d57264 100644 --- a/src/script.c +++ b/src/script.c @@ -283,6 +283,9 @@ static int event_trigger(xas_spatial_scene *scene, xas_script_event *ev) { } xas_vox_say(ev->object->ctx, ev->phrase); + xas_vox_generate(ev->object->ctx); + + break; } return 0; |