Fix loading plugins expecting COM to be available

The `LoadLibrary()` call for PSPaudioware InfiniStrip would fail because
the plugin would always expect COM to be initialized. Now if loading a
VST2 or VST3 module fails, we'll initialize COM and try again before
throwing an error. This may fix #94.
This commit is contained in:
Robbert van der Helm
2021-04-25 21:52:41 +02:00
parent d55f07e962
commit 86bd19cd80
3 changed files with 22 additions and 1 deletions
+3
View File
@@ -16,6 +16,9 @@ Versioning](https://semver.org/spec/v2.0.0.html).
### Fixed
- _PSPaudioware InifniStrip_ would fail to initialize because the plugin expects
the host to always be using Microsoft COM and it won't initialize it by
itself. InfiniStrip loads as expected now.
- Prevent _Native Instruments' FM7_ from crashing when processing MIDI. As a
fix, MIDI events are now deallocated later then when they normally would have
to be.