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:
parent
3374dff2aa
commit
1fbb854880
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue