From 43a0ef21207398d568754d7af95c9b920b47039b Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Sun, 15 Jul 2018 16:56:27 +0100 Subject: [PATCH] Update README --- README.md | 4 +++- signal/version.h | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f0925eaf..491e7bf0 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,13 @@ NodeRef delay = tmp->add_node(new Delay(ping, 0.5, 0.5)); tmp->set_output(delay); /*------------------------------------------------------------------------ - * Instantiate the synth and route it to the audio output. + * Instantiate the synth and route it to the audio output, + * then start the AudioGraph and run forever. *-----------------------------------------------------------------------*/ SynthRef synth = new Synth(tmp); graph->add_output(synth); graph->start(); +graph->wait(); ``` ## Installation diff --git a/signal/version.h b/signal/version.h index 269252ea..e62173ab 100644 --- a/signal/version.h +++ b/signal/version.h @@ -1,2 +1,2 @@ #define SIGNAL_VERSION "0.1.1" -#define SIGNAL_BUILD 525 +#define SIGNAL_BUILD 526