fixed non-mac issues

This commit is contained in:
itsmattkc
2019-01-22 22:52:41 +11:00
parent 8977acde31
commit 4dfd69f363
5 changed files with 12 additions and 10 deletions
+2 -2
View File
@@ -28,7 +28,7 @@
#include "effects/internal/paneffect.h"
#include "effects/internal/shakeeffect.h"
#include "effects/internal/cornerpineffect.h"
#if defined(_WIN32) || defined(__APPLE__)
#ifndef NOVST
#include "effects/internal/vsthost.h"
#endif
#include "effects/internal/fillleftrighteffect.h"
@@ -64,7 +64,7 @@ Effect* create_effect(Clip* c, const EffectMeta* em) {
case EFFECT_INTERNAL_SHAKE: return new ShakeEffect(c, em);
case EFFECT_INTERNAL_CORNERPIN: return new CornerPinEffect(c, em);
case EFFECT_INTERNAL_FILLLEFTRIGHT: return new FillLeftRightEffect(c, em);
#if (defined(_WIN32) || defined(__APPLE__)) && !defined(NOVST)
#ifndef NOVST
case EFFECT_INTERNAL_VST: return new VSTHost(c, em);
#endif
#ifndef NOFREI0R