stub out library code too

This commit is contained in:
falkTX 2021-10-16 20:59:25 +01:00
parent 9bc002577e
commit 934e7ad021
3 changed files with 25 additions and 5 deletions

View file

@ -107,10 +107,9 @@ struct Initializer {
}
INFO("Initializing environment");
audio::init();
midi::init();
audio::init(); // does nothing
midi::init(); // does nothing
plugin::init();
library::init();
ui::init();
}
@ -119,7 +118,6 @@ struct Initializer {
using namespace rack;
ui::destroy();
library::destroy();
midi::destroy();
audio::destroy();
plugin::destroy();