i get this assertion sometimes, when closing a host with a plugin that has a sync thread http://code.google.com/p/sklepseq/source/browse/trunk/xsync.cpp
it says to inform you
so i am.
void removeTimer (Timer* const t) throw()
{
#ifdef JUCE_DEBUG
Timer* tt = firstTimer;
bool found = false;
while (tt != 0)
{
if (tt == t)
{
found = true;
break;
}
tt = tt->next;
}
// trying to remove a timer that's not here - shouldn't get to this point,
// so if you get this assertion, let me know!
jassert (found);
#endif
