mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-31 13:20:34 +00:00
Fix the pending sound list sorting
This commit is contained in:
parent
5d97bbff8a
commit
16ee0073d4
1 changed files with 1 additions and 1 deletions
|
@ -724,7 +724,7 @@ S_StartSound(vec3_t origin, int entnum, int entchannel, sfx_t *sfx,
|
|||
|
||||
/* sort into the pending sound list */
|
||||
for (sort = s_pendingplays.next;
|
||||
sort != &s_pendingplays && sort->begin < ps->begin;
|
||||
sort != &s_pendingplays && sort->begin <= ps->begin;
|
||||
sort = sort->next)
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue