How can I tell when the music I'm playing on infinite looped mode with SDL_Mixer has looped? I tried Mix_HookMusicFinished, but that didn't work; apparently it only notifies you when the music stops playing, which it won't do on an infinite loop. Is there another callback function that I missed? If not, is there some coding trick I can use?

Mason