mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +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)
|
||||
thread->next->prev = thread->prev;
|
||||
else
|
||||
gib_thread_last = thread->next;
|
||||
gib_thread_last = thread->prev;
|
||||
}
|
||||
|
||||
gib_thread_t *
|
||||
|
|
Loading…
Reference in a new issue