diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/spatial.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/examples/spatial.c b/examples/spatial.c index ac467ee..ec606d6 100644 --- a/examples/spatial.c +++ b/examples/spatial.c @@ -135,13 +135,15 @@ int main(int argc, char **argv) { if (xas_spatial_scene_add_object(scene, (xas_spatial_coord){ 5.2, 0.0, 0.0 }, - synth) == NULL) { + synth, + &sine_channels[0]) == NULL) { goto error_spatial_scene_add_object; } if (xas_spatial_scene_add_object(scene, (xas_spatial_coord){ -5.2, 0.0, 0.0 }, - voice) == NULL) { + voice, + vox) == NULL) { goto error_spatial_scene_add_object; } |