From 83f1767d438233147b0c76b44afa3d686441b366 Mon Sep 17 00:00:00 2001 From: JP Cimalando Date: Sat, 8 Jun 2019 16:13:58 +0200 Subject: [PATCH] Fix LV2 state string exporting --- distrho/src/DistrhoPluginLV2export.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distrho/src/DistrhoPluginLV2export.cpp b/distrho/src/DistrhoPluginLV2export.cpp index 68b26721..a43ec4b7 100644 --- a/distrho/src/DistrhoPluginLV2export.cpp +++ b/distrho/src/DistrhoPluginLV2export.cpp @@ -719,7 +719,7 @@ void lv2_generate_ttl(const char* const basename) if (value.length() < 10) presetString += " \"" + value + "\" ;\n"; else - presetString += "\n\"\"\"\n" + value + "\n\"\"\" ;\n"; + presetString += "\n\"\"\"" + value + "\"\"\" ;\n"; } if (numParameters > 0)