opps, that wasn't meant to go in

This commit is contained in:
Bill Currie 2007-03-26 11:49:54 +00:00 committed by Jeff Teunissen
parent f2e524491d
commit 970408769f

View file

@ -329,8 +329,8 @@ s_pick_channel (int entnum, int entchannel, int looped)
}
_ch = &(*_ch)->next;
}
_ch = looped ? &looped_dynamic_channels : &free_channels;
if ((ch = SND_AllocChannel ()) && looped) {
_ch = looped ? &looped_dynamic_channels : &dynamic_channels;
if ((ch = SND_AllocChannel ())) {
ch->next = *_ch;
*_ch = ch;
}