Browse Source

Misc

tags/2018-04-16
falkTX 8 years ago
parent
commit
6daf61b47c
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libs/juce/source/modules/juce_audio_basics/juce_audio_basics.cpp
  2. +1
    -1
      libs/juce/source/modules/juce_audio_processors/processors/juce_AudioProcessor.cpp

+ 1
- 1
libs/juce/source/modules/juce_audio_basics/juce_audio_basics.cpp View File

@@ -37,7 +37,7 @@
#define JUCE_USE_SSE_INTRINSICS 0
#endif
#if JUCE_MINGW
#if JUCE_MINGW && ! defined (alloca)
#define alloca __builtin_alloca
#endif


+ 1
- 1
libs/juce/source/modules/juce_audio_processors/processors/juce_AudioProcessor.cpp View File

@@ -402,7 +402,6 @@ bool AudioProcessor::supportsDoublePrecisionProcessing() const
return false;
}
#if ! JUCE_AUDIO_PROCESSOR_NO_GUI
//==============================================================================
static String getChannelName (const Array<AudioProcessor::AudioProcessorBus>& buses, int index)
{
@@ -542,6 +541,7 @@ void AudioProcessor::updateSpeakerFormatStrings()
cachedOutputSpeakerArrString = busArrangement.outputBuses.getReference (0).channels.getSpeakerArrangementAsString();
}
#if ! JUCE_AUDIO_PROCESSOR_NO_GUI
//==============================================================================
void AudioProcessor::editorBeingDeleted (AudioProcessorEditor* const editor) noexcept
{


Loading…
Cancel
Save