mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 06:51:47 +00:00
Fixed a thinko that was causing events not to run under certain
circumstances.
This commit is contained in:
parent
ba3601685c
commit
fad902f0bf
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ GIB_Thread_Remove (gib_thread_t * thread)
|
||||||
if (thread->next)
|
if (thread->next)
|
||||||
thread->next->prev = thread->prev;
|
thread->next->prev = thread->prev;
|
||||||
else
|
else
|
||||||
gib_thread_last = thread->next;
|
gib_thread_last = thread->prev;
|
||||||
}
|
}
|
||||||
|
|
||||||
gib_thread_t *
|
gib_thread_t *
|
||||||
|
|
Loading…
Reference in a new issue