freebsd-ports/audio/sdl_mixer/files/patch-mixer.c
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

24 lines
595 B
C

--- mixer.c.orig 2012-01-15 22:01:05 UTC
+++ mixer.c
@@ -1272,6 +1272,21 @@ int Mix_GroupOldest(int tag)
return(chan);
}
+int Mix_GetMixerInfo(SDL_AudioSpec *m, char *namebuf, int maxlen)
+{
+ if (!audio_opened)
+ return -1;
+ if (m)
+ *m = mixer; /* struct copy */
+ if (namebuf && maxlen > 0)
+ {
+ namebuf[0] = 0;
+ if (SDL_AudioDriverName(namebuf, maxlen) == NULL)
+ namebuf[0] = 0;
+ }
+ return 0;
+}
+
/* Finds the "most recent" (i.e. last) sample playing in a group of channels */
int Mix_GroupNewer(int tag)
{