Skip to content
Snippets Groups Projects
Commit 344d61eb authored by Ivica Bukvic's avatar Ivica Bukvic
Browse files

*fixed pd~ regression where instantiation within another instance of pd~...

*fixed pd~ regression where instantiation within another instance of pd~ failed to start due to expectation of the new -unique flag without which all patches are opened within the existing instance.
parent a51864a5
No related branches found
No related tags found
No related merge requests found
...@@ -205,7 +205,7 @@ static void pd_tilde_donew(t_pd_tilde *x, char *pddir, char *schedlibdir, ...@@ -205,7 +205,7 @@ static void pd_tilde_donew(t_pd_tilde *x, char *pddir, char *schedlibdir,
} }
} }
snprintf(cmdbuf, MAXPDSTRING, snprintf(cmdbuf, MAXPDSTRING,
"%s -schedlib %s/pdsched -path %s -inchannels %d -outchannels %d -r %g %s\n", "%s -unique -schedlib %s/pdsched -path %s -inchannels %d -outchannels %d -r %g %s\n",
pdexecbuf, schedlibdir, patchdir, ninsig, noutsig, samplerate, pdargs); pdexecbuf, schedlibdir, patchdir, ninsig, noutsig, samplerate, pdargs);
#if 0 #if 0
#ifdef PD #ifdef PD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment