1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/multimedia/xmms/files/patch-ab
Chris Piazza 63695790b4 Add a patch that allows xmms to play the next song in the playlist.
It's pretty ugly and should be fixed properly some time.

Submitted by:	Jakob Alvermark <jakob@teligent.se>
1999-11-11 00:05:00 +00:00

15 lines
382 B
Plaintext

--- Output/OSS/audio.c.orig Thu Oct 14 09:26:06 1999
+++ Output/OSS/audio.c Tue Sep 28 16:36:45 1999
@@ -146,10 +146,7 @@
audio_buf_info buf_info;
int bytes;
- if (!ioctl(fd, SNDCTL_DSP_GETOSPACE, &buf_info))
- bytes = ((buf_info.fragstotal - buf_info.fragments - 3) * buf_info.fragsize);
- else
- bytes = 0;
+ bytes = 0;
if (!oss_used() && bytes <= 0)
return FALSE;