Browse Source

Fix the cairo VST2 by setting the unique ID

pull/280/head
Jean Pierre Cimalando 4 years ago
parent
commit
3788531034
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      examples/CairoUI/CairoExamplePlugin.cpp

+ 2
- 2
examples/CairoUI/CairoExamplePlugin.cpp View File

@@ -46,12 +46,12 @@ public:

uint32_t getVersion() const
{
return 0;
return d_version(1, 0, 0);
}

int64_t getUniqueId() const
{
return 0;
return d_cconst('d', 'C', 'a', 'i');
}

void initParameter(uint32_t index, Parameter& parameter)


Loading…
Cancel
Save