DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit c28c8b9e15b3f20dc9c09c1002ac6deb67d4af9a
parent a0b25654c979ecdfbec019046696bfdce15c78d7
Author: falkTX <falktx@falktx.com>
Date:   Fri, 11 Feb 2022 04:25:56 +0000

Fix LV2 event out size for readable states

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
Mdistrho/src/DistrhoPluginLV2.cpp | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/distrho/src/DistrhoPluginLV2.cpp b/distrho/src/DistrhoPluginLV2.cpp @@ -772,6 +772,8 @@ public: lv2_atom_forge_string(&atomForge, value.buffer(), static_cast<uint32_t>(value.length()+1)); lv2_atom_forge_pop(&atomForge, &forgeFrame); + + msgSize = ((LV2_Atom*)msgBuf)->size; } else {