diff --git a/Helpers/foleys_AtomicValueAttachment.h b/Helpers/foleys_AtomicValueAttachment.h index 9ba38aef..e3fbfd68 100644 --- a/Helpers/foleys_AtomicValueAttachment.h +++ b/Helpers/foleys_AtomicValueAttachment.h @@ -70,7 +70,7 @@ class AtomicValueAttachment : private juce::Value::Listener } juce::Value internalValue; - std::atomic atomicValue; + std::atomic atomicValue { T (0) }; }; } diff --git a/VERSION.md b/VERSION.md index 37006903..8fa93040 100644 --- a/VERSION.md +++ b/VERSION.md @@ -5,6 +5,7 @@ PluginGuiMagic - Versions history ----- - Add context menu option to XY-Dragger +- Bugfix: Fixed uninitialized atomic in AtomicParameterAttachment 1.1.4 - 28.04.2020 ------------------