diff options
-rw-r--r-- | plugins/eg01-amp.lv2/amp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/eg01-amp.lv2/amp.c b/plugins/eg01-amp.lv2/amp.c index 8dd7b4f..dd302c3 100644 --- a/plugins/eg01-amp.lv2/amp.c +++ b/plugins/eg01-amp.lv2/amp.c @@ -51,7 +51,8 @@ typedef enum { Every plugin defines a private structure for the plugin instance. All data associated with a plugin instance is stored here, and is available to every instance method. In this simple plugin, only port buffers need to be - stored, since there is no additional instance data. */ + stored, since there is no additional instance data. +*/ typedef struct { // Port buffers const float* gain; |