Skip to content
Snippets Groups Projects
Commit a00549f0 authored by Miller Puckette's avatar Miller Puckette
Browse files

s_loader bug fix

parent 42f59bf8
No related branches found
No related tags found
No related merge requests found
......@@ -124,7 +124,7 @@ static int sys_do_load_lib(t_canvas *canvas, char *objectname)
symname[i] = 0;
if (hexmunge)
{
memmove(symname+6, symname, strlen(symname+1));
memmove(symname+6, symname, strlen(symname)+1);
strncpy(symname, "setup_", 6);
}
else strcat(symname, "_setup");
......
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