Skip to content

Commit

Permalink
Merge pull request #381 from nshaheed/main
Browse files Browse the repository at this point in the history
Fix dyno example links
  • Loading branch information
gewang authored Oct 18, 2023
2 parents f4583d3 + c0948b6 commit ea8af9b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/ugen_xxx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -883,9 +883,9 @@ DLL_QUERY xxx_query( Chuck_DL_Query * QUERY )
dyno_ctor, dyno_dtor, dyno_tick, NULL, doc.c_str() ) )
return FALSE;

if( !type_engine_import_add_ex( env, "Dyno-compress.ck" ) ) goto error;
if( !type_engine_import_add_ex( env, "Dyno-duck.ck" ) ) goto error;
if( !type_engine_import_add_ex( env, "Dyno-limit.ck" ) ) goto error;
if( !type_engine_import_add_ex( env, "special/Dyno-compress.ck" ) ) goto error;
if( !type_engine_import_add_ex( env, "special/Dyno-duck.ck" ) ) goto error;
if( !type_engine_import_add_ex( env, "special/Dyno-limit.ck" ) ) goto error;

// add member variable
dyno_offset_data = type_engine_import_mvar( env, "int", "@dyno_data", FALSE );
Expand Down

0 comments on commit ea8af9b

Please sign in to comment.