Get youngest busy channel in group
The channel found on success. -1 is returned when no channels in the group are playing or the group is empty.
Binds to C-function in SDL_mixer.h
int Mix_GroupNewer(int tag)
// find the newest playing channel in group 1 int channel; channel=Mix_GroupNewer(1); if (channel==-1) { // no channel playing or allocated... // perhaps just search for an available channel... }
SdlMixer Class | Tao.Sdl Namespace | Mix_GroupOldest | Mix_GroupAvailable | Mix_GroupChannel | Mix_GroupChannels