1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-19 01:04:20 +00:00

Changed include style for aeffectx.h

This commit is contained in:
jules 2012-11-05 20:32:40 +00:00
parent 3374dff2aa
commit 1fbb854880

View file

@ -54,7 +54,7 @@
If you're not interested in VSTs, you can disable them by setting the
JUCE_PLUGINHOST_VST flag to 0.
*/
#include <pluginterfaces/vst2.x/aeffectx.h>
#include "pluginterfaces/vst2.x/aeffectx.h"
#if JUCE_MSVC
#pragma warning (pop)
@ -713,12 +713,12 @@ class VSTPluginInstance : public AudioPluginInstance,
public:
VSTPluginInstance (const ModuleHandle::Ptr& module_)
: effect (nullptr),
module (module_),
name (module_->pluginName),
wantsMidiMessages (false),
initialised (false),
isPowerOn (false),
tempBuffer (1, 1),
module (module_)
tempBuffer (1, 1)
{
try
{