mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 04:42:32 +00:00
opps, that wasn't meant to go in
This commit is contained in:
parent
f2e524491d
commit
970408769f
1 changed files with 2 additions and 2 deletions
|
@ -329,8 +329,8 @@ s_pick_channel (int entnum, int entchannel, int looped)
|
||||||
}
|
}
|
||||||
_ch = &(*_ch)->next;
|
_ch = &(*_ch)->next;
|
||||||
}
|
}
|
||||||
_ch = looped ? &looped_dynamic_channels : &free_channels;
|
_ch = looped ? &looped_dynamic_channels : &dynamic_channels;
|
||||||
if ((ch = SND_AllocChannel ()) && looped) {
|
if ((ch = SND_AllocChannel ())) {
|
||||||
ch->next = *_ch;
|
ch->next = *_ch;
|
||||||
*_ch = ch;
|
*_ch = ch;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue