Fix plugin search
This commit is contained in:
parent
87675ff4e3
commit
7a483fca89
1 changed files with 6 additions and 2 deletions
|
|
@ -24,6 +24,7 @@
|
||||||
#include <settings.hpp>
|
#include <settings.hpp>
|
||||||
#include <system.hpp>
|
#include <system.hpp>
|
||||||
|
|
||||||
|
#include <app/Browser.hpp>
|
||||||
#include <app/Scene.hpp>
|
#include <app/Scene.hpp>
|
||||||
#include <engine/Engine.hpp>
|
#include <engine/Engine.hpp>
|
||||||
#include <ui/common.hpp>
|
#include <ui/common.hpp>
|
||||||
|
|
@ -149,14 +150,17 @@ struct Initializer
|
||||||
}
|
}
|
||||||
|
|
||||||
INFO("Initializing audio driver");
|
INFO("Initializing audio driver");
|
||||||
rack::audio::addDriver(0, new CardinalAudioDriver);
|
audio::addDriver(0, new CardinalAudioDriver);
|
||||||
|
|
||||||
INFO("Initializing midi driver");
|
INFO("Initializing midi driver");
|
||||||
rack::midi::addDriver(0, new CardinalMidiDriver);
|
midi::addDriver(0, new CardinalMidiDriver);
|
||||||
|
|
||||||
INFO("Initializing plugins");
|
INFO("Initializing plugins");
|
||||||
plugin::initStaticPlugins();
|
plugin::initStaticPlugins();
|
||||||
|
|
||||||
|
INFO("Initializing plugin browser DB");
|
||||||
|
app::browserInit();
|
||||||
|
|
||||||
#ifdef HAVE_LIBLO
|
#ifdef HAVE_LIBLO
|
||||||
INFO("Initializing OSC Remote control");
|
INFO("Initializing OSC Remote control");
|
||||||
oscServer = lo_server_new_with_proto(REMOTE_HOST_PORT, LO_UDP, osc_error_handler);
|
oscServer = lo_server_new_with_proto(REMOTE_HOST_PORT, LO_UDP, osc_error_handler);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue