diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-24 01:44:50 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-24 01:44:50 +0000 |
commit | fb5547a65d805fae2daa06ccf3b9dea234ffc4d8 (patch) | |
tree | f79356c767b56487aa7330da0a8167dc52675329 /pdp_freeframe | |
parent | e9c07cc20fd83680ee7aeb93a530eb9d29aa1902 (diff) |
added [plugindir( message and set default plugindir in _new*( functions
svn path=/trunk/externals/pdvjtools/; revision=9892
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) |