Browse Source

Update juce

tags/2018-04-16
falkTX 10 years ago
parent
commit
ecdfcae586
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      libs/juce/source/modules/juce_audio_formats/format/juce_AudioFormatReader.cpp
  2. +1
    -1
      ports/pitchedDelay/source/PluginEditor.cpp

+ 1
- 1
libs/juce/source/modules/juce_audio_formats/format/juce_AudioFormatReader.cpp View File

@@ -163,7 +163,7 @@ void AudioFormatReader::read (AudioSampleBuffer* buffer,
}
else
{
HeapBlock<int*> chans ((size_t) numTargetChannels);
HeapBlock<int*> chans ((size_t) numTargetChannels + 1);
readChannels (*this, chans, buffer, startSample, numSamples, readerStartSample, numTargetChannels);
}


+ 1
- 1
ports/pitchedDelay/source/PluginEditor.cpp View File

@@ -63,7 +63,7 @@ PitchedDelayAudioProcessorEditor::PitchedDelayAudioProcessorEditor (PitchedDelay
{
#if LINUX
File presetFile("~/.config/lkjb/PitchedDelay/presets.xml");
File presetFile("~/.config/lkjb/PitchedDelayPresets.xml");
#else
File presetFile(File::getSpecialLocation(File::userApplicationDataDirectory).getChildFile("lkjb").getChildFile("PitchedDelay").getChildFile("presets.xml"));
#endif


Loading…
Cancel
Save