-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
'cln' crash #350
Comments
"Cln" means clone. It clones the current pattern to the next unused pattern number and inserts that into the sequence. "Seq" only does the latter. |
I've been testing this with a debug build, and added a printf at if (clone)
{
// now clone pattern
printf("dest %i src %i\n",(int)dstPatternIndex,(int)srcPatternIndex);
module->phead[dstPatternIndex] = module->phead[srcPatternIndex];
} gdb gives this backtrace
I was hoping somebody with c++/operator-overloading experience could figure this one out |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Noticed that pushing "cln" button causes a crash with 'signal 11' in one of my abandoned projects. (can be reproduced in 1.04)
Also, doesn't 'cln' mean 'clean'? I think 'seq' does what 'cln' should (not sure).
Module:
https://disk.yandex.ru/d/8nfnO_smpmvN7Q
The text was updated successfully, but these errors were encountered: