You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.3KB

  1. diff --git a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
  2. index cabbbcf13..f722ab36c 100644
  3. --- a/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
  4. +++ b/modules/juce_audio_plugin_client/VST/juce_VST_Wrapper.cpp
  5. @@ -488,7 +488,7 @@ public:
  6. {
  7. const int numChannels = jmax (numIn, numOut);
  8. - AudioBuffer<FloatType> chans (tmpBuffers.channels, isMidiEffect ? 0 : numChannels, numSamples);
  9. + juce::AudioBuffer<FloatType> chans (tmpBuffers.channels, isMidiEffect ? 0 : numChannels, numSamples);
  10. if (isBypassed)
  11. processor->processBlockBypassed (chans, midiEvents);
  12. diff --git a/modules/juce_audio_plugin_client/utility/juce_IncludeModuleHeaders.h b/modules/juce_audio_plugin_client/utility/juce_IncludeModuleHeaders.h
  13. index 4b36f6d64..61dbdeede 100644
  14. --- a/modules/juce_audio_plugin_client/utility/juce_IncludeModuleHeaders.h
  15. +++ b/modules/juce_audio_plugin_client/utility/juce_IncludeModuleHeaders.h
  16. @@ -23,6 +23,8 @@
  17. ==============================================================================
  18. */
  19. +#pragma once
  20. +
  21. #include <juce_audio_plugin_client/juce_audio_plugin_client.h>
  22. #include "juce_CreatePluginFilter.h"