1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
Tatsuya Shiozawa 2025-12-25 18:58:53 +00:00 committed by GitHub
commit 92d591659c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2432,9 +2432,9 @@ Array<var> Project::getDefaultVSTCategories() const noexcept
StringArray Project::getAllVST3CategoryStrings() noexcept
{
static StringArray vst3CategoryStrings { "Fx", "Instrument", "Analyzer", "Delay", "Distortion", "Drum", "Dynamics", "EQ", "External", "Filter",
"Generator", "Mastering", "Modulation", "Mono", "Network", "NoOfflineProcess", "OnlyOfflineProcess", "OnlyRT",
"Pitch Shift", "Restoration", "Reverb", "Sampler", "Spatial", "Stereo", "Surround", "Synth", "Tools", "Up-Downmix" };
static StringArray vst3CategoryStrings { "Fx", "Instrument", "Analyzer", "Ambisonics", "Delay", "Distortion", "Drum", "Dynamics", "EQ", "External", "Filter",
"Generator", "Mastering", "Modulation", "Mono", "Network", "NoOfflineProcess", "OnlyARA", "OnlyOfflineProcess", "OnlyRT",
"Piano", "Pitch Shift", "Restoration", "Reverb", "Sampler", "Spatial", "Stereo", "Surround", "Synth", "Tools", "Up-Downmix" };
return vst3CategoryStrings;
}