mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Minor formatting fixes
This commit is contained in:
parent
0e7c503720
commit
f876b9f5df
2 changed files with 4 additions and 2 deletions
|
|
@ -1707,7 +1707,9 @@ struct VST3PluginInstance : public AudioPluginInstance
|
|||
|
||||
editController->setComponentHandler (nullptr);
|
||||
|
||||
if (isControllerInitialised) editController->terminate();
|
||||
if (isControllerInitialised)
|
||||
editController->terminate();
|
||||
|
||||
holder->terminate();
|
||||
|
||||
componentConnection = nullptr;
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ void AudioProcessorPlayer::setProcessor (AudioProcessor* const processorToPlay)
|
|||
{
|
||||
if (processorToPlay != nullptr && sampleRate > 0 && blockSize > 0)
|
||||
{
|
||||
processorToPlay->setPlayConfigDetails(numInputChans, numOutputChans, sampleRate, blockSize);
|
||||
processorToPlay->setPlayConfigDetails (numInputChans, numOutputChans, sampleRate, blockSize);
|
||||
|
||||
bool supportsDouble = processorToPlay->supportsDoublePrecisionProcessing() && isDoublePrecision;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue