Fixed a thinko that was causing events not to run under certain

circumstances.
This commit is contained in:
Brian Koropoff 2003-05-17 17:36:10 +00:00
parent ba3601685c
commit fad902f0bf

View file

@ -82,7 +82,7 @@ GIB_Thread_Remove (gib_thread_t * thread)
if (thread->next)
thread->next->prev = thread->prev;
else
gib_thread_last = thread->next;
gib_thread_last = thread->prev;
}
gib_thread_t *