Correct the VST3 categories string length
This commit is contained in:
parent
35cf7ffc1d
commit
0a67c8e5f4
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ pub trait Plugin: Default + Sync {
|
||||||
const URL: &'static str;
|
const URL: &'static str;
|
||||||
const EMAIL: &'static str;
|
const EMAIL: &'static str;
|
||||||
|
|
||||||
/// One or more categories, separated by pipe characters (`|`), up to 31 characters. Anything
|
/// One or more categories, separated by pipe characters (`|`), up to 127 characters. Anything
|
||||||
/// logner than that will be truncated. See the VST3 SDK for examples of common categories:
|
/// logner than that will be truncated. See the VST3 SDK for examples of common categories:
|
||||||
/// https://github.com/steinbergmedia/vst3_pluginterfaces/blob/2ad397ade5b51007860bedb3b01b8afd2c5f6fba/vst/ivstaudioprocessor.h#L49-L90
|
/// https://github.com/steinbergmedia/vst3_pluginterfaces/blob/2ad397ade5b51007860bedb3b01b8afd2c5f6fba/vst/ivstaudioprocessor.h#L49-L90
|
||||||
const VST3_CATEGORIES: &'static str;
|
const VST3_CATEGORIES: &'static str;
|
||||||
|
|
Loading…
Add table
Reference in a new issue