From d7dfc0492adeb081104f0ede78ab703dcb359688 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Mon, 30 Mar 2020 15:56:15 -0400 Subject: [PATCH] Destroy plugins after destroying audio and MIDI drivers, because plugins that register their own audio/MIDI drivers need to be kept loaded when the drivers are destructed. --- standalone/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/main.cpp b/standalone/main.cpp index fa57c878..d1a28af4 100644 --- a/standalone/main.cpp +++ b/standalone/main.cpp @@ -244,9 +244,9 @@ int main(int argc, char* argv[]) { windowDestroy(); ui::destroy(); } - plugin::destroy(); midi::destroy(); audio::destroy(); + plugin::destroy(); INFO("Destroying logger"); logger::destroy();