Page 4 of 4

Posted: Tue May 10, 2011 7:03 pm
by dlpinkstah
Mastahlee's "revised" patch makes use of the send (abbreviated "s") and receive (abbreviated "r") max objects to pass messages around within the patch. Unfortunately, these objects are global in scope and therefore multiple instances of the same patch actually share all those messages. So a named receive object (e.g. "r pinky_input") in the first instance ends up receiving the same messages as the named receive object in the second instance. To avoid this, edit Mastahlee's patch so that instead of using named send/receive objects you use pattrforward to send messages. Should be a pretty easy fix.