Browse Source

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.

tags/v2.0.0
Andrew Belt 4 years ago
parent
commit
d7dfc0492a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      standalone/main.cpp

+ 1
- 1
standalone/main.cpp View File

@@ -244,9 +244,9 @@ int main(int argc, char* argv[]) {
windowDestroy(); windowDestroy();
ui::destroy(); ui::destroy();
} }
plugin::destroy();
midi::destroy(); midi::destroy();
audio::destroy(); audio::destroy();
plugin::destroy();
INFO("Destroying logger"); INFO("Destroying logger");
logger::destroy(); logger::destroy();




Loading…
Cancel
Save