Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.

Commit 0de55bf

Browse files
committed
Pd and test compile fixes.
1 parent 5b281b0 commit 0de55bf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pd/jsusfx_pd.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ void jsusfx_compile(t_jsusfx *x, t_symbol *newFile) {
278278
}
279279

280280
x->fx->dspLock.Enter();
281-
if ( x->fx->compile(*(x->path), x->scriptpath) ) {
281+
if ( x->fx->compile(*(x->path), x->scriptpath, 0) ) {
282282
if ( x->fx->srate != 0 )
283283
x->fx->prepare(*(x->fx->srate), *(x->fx->samplesblock));
284284
x->bypass = false;

test/jsusfx_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ void test_script(const char *path) {
137137
gfx.init(fx->m_vm);
138138
#endif
139139

140-
printf("compile %d: %s\n", fx->compile(pathLibrary, path), path);
140+
printf("compile %d: %s\n", fx->compile(pathLibrary, path, 0), path);
141141

142142
printf("desc: %s\n", fx->desc);
143143

0 commit comments

Comments
 (0)