diff options
Diffstat (limited to 'pdp_freeframe')
-rw-r--r-- | pdp_freeframe/pdp_freeframe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pdp_freeframe/pdp_freeframe.c b/pdp_freeframe/pdp_freeframe.c index 3bbe767..7266bd0 100644 --- a/pdp_freeframe/pdp_freeframe.c +++ b/pdp_freeframe/pdp_freeframe.c @@ -192,7 +192,8 @@ void ff_freeplugins(t_pdp_freeframe *x) static void pdp_freeframe_plugindir(t_pdp_freeframe *x, t_symbol *s) { x->plugindir = s; - ff_loadplugins(x, x->plugindir); + if( s != &s_) + ff_loadplugins(x, x->plugindir); } static void pdp_freeframe_process_rgb(t_pdp_freeframe *x) |