13
0

Fix VST build.

git-svn-id: svn://localhost/ardour2/branches/3.0@8195 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-12-06 03:07:22 +00:00
parent 5f00efd7e8
commit bf7b8df028
2 changed files with 13 additions and 1 deletions

View File

@ -81,6 +81,7 @@ class VSTPlugin : public ARDOUR::Plugin
bool load_preset (const std::string& preset_label);
bool save_preset (std::string name);
void remove_preset (std::string name);
bool has_editor () const;

View File

@ -182,7 +182,7 @@ VSTPlugin::get_state()
for (int32_t n = 0; n < _plugin->numParams; ++n) {
char index[64];
char val[32];
snprintf (index, sizeof (index), "param_%ld", n);
snprintf (index, sizeof (index), "param_%d", n);
snprintf (val, sizeof (val), "%.12g", _plugin->getParameter (_plugin, n));
parameters->add_property (index, val);
}
@ -349,6 +349,17 @@ VSTPlugin::save_preset (string name)
return Plugin::save_preset (name, "vst");
}
void
VSTPlugin::remove_preset (string name)
{
if (_plugin->flags & 32 /* effFlagsProgramsChunks */) {
error << _("no support for presets using chunks at this time")
<< endmsg;
return;
}
Plugin::remove_preset (name, "vst");
}
string
VSTPlugin::describe_parameter (Evoral::Parameter param)
{