We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6108983 commit 5ab150eCopy full SHA for 5ab150e
Source/PluginProcessor.cpp
@@ -164,8 +164,14 @@ PluginProcessor::PluginProcessor()
164
165
setEnableLimiter(settingsFile->getProperty<int>("protected"));
166
setLimiterThreshold(settingsFile->getProperty<int>("limiter_threshold"));
167
- midiDeviceManager.setInternalSynthPort(settingsFile->getProperty<int>("internal_synth"));
168
+ if(ProjectInfo::isStandalone) {
169
+ midiDeviceManager.setInternalSynthPort(settingsFile->getProperty<int>("internal_synth"));
170
+ }
171
+ else {
172
+ midiDeviceManager.setInternalSynthPort(0);
173
174
+
175
auto currentThemeTree = settingsFile->getCurrentTheme();
176
177
// ag: This needs to be done *after* the library data has been unpacked on
0 commit comments