AuburnSounds / Dplug

Make VST2 / VST3 / AU / AAX / CLAP / LV2 / FLP plug-ins for Linux/macOS/Windows, using D.
https://dplug.org/
Other
492 stars 32 forks source link

usability #846

Open p0nce opened 7 months ago

p0nce commented 7 months ago
p0nce commented 6 months ago
p0nce commented 5 months ago
p0nce commented 5 months ago

This doesn't crash at runtime:

static immutable string[] names = ["V1", "V2", "V3"];
params.pushBack( mallocNew!EnumParameter(paramSomething, "MyEnum", names, 1));

But this crash:

static immutable string[3] names = ["V1", "V2", "V3"];
params.pushBack( mallocNew!EnumParameter(paramSomething, "MyEnum", names, 1));

find a way to avoid that

p0nce commented 4 months ago
p0nce commented 4 months ago
p0nce commented 4 months ago
p0nce commented 1 month ago