commit c238a2c727c543def8a4b842ffa7f2dc28094726
parent c6ab2cd65793c2f47bf86befd3e74aa84073863a
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Thu, 21 Apr 2022 16:18:24 +0200
make voice_info->get() require the plugin to be active
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/clap/ext/draft/voice-info.h b/include/clap/ext/draft/voice-info.h
@@ -33,7 +33,7 @@ typedef struct clap_voice_info {
typedef struct clap_plugin_voice_info {
// gets the voice info, returns true on success
- // [main-thread]
+ // [main-thread && active]
bool (*get)(const clap_plugin_t *plugin, clap_voice_info_t *info);
} clap_plugin_voice_info_t;