v1.1.20 Release

This commit is contained in:
Robin Davies
2023-04-20 15:27:18 -04:00
parent e2b62da073
commit 37426d9047
117 changed files with 2147 additions and 711 deletions
+2 -1
View File
@@ -255,11 +255,12 @@ void Lv2PluginStateEntry::read_json(json_reader &reader)
{
std::string v;
reader.read_member("value",&v);
value_.resize(v.length());
value_.resize(v.length()+1);
for (size_t i = 0; i < v.length(); ++i)
{
value_[i] = (uint8_t)v[i];
}
value_[v.length()] = 0;
} else if (atomType_ == LV2_ATOM__Float)
{
float v;