summaryrefslogtreecommitdiff
path: root/games/freesci/files/patch-src::sound::pcmout_oss.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/freesci/files/patch-src::sound::pcmout_oss.c')
-rw-r--r--games/freesci/files/patch-src::sound::pcmout_oss.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/games/freesci/files/patch-src::sound::pcmout_oss.c b/games/freesci/files/patch-src::sound::pcmout_oss.c
deleted file mode 100644
index 41333d03d40b..000000000000
--- a/games/freesci/files/patch-src::sound::pcmout_oss.c
+++ /dev/null
@@ -1,18 +0,0 @@
---- src/sound/pcmout_oss.c.orig Thu Feb 20 20:52:48 2003
-+++ src/sound/pcmout_oss.c Thu Feb 20 21:02:06 2003
-@@ -75,6 +75,15 @@
- return -1;
- }
-
-+/* Some OSS don't define the native endian */
-+#ifndef AFMT_S16_NE
-+ #if defined __i386__ || defined __alpha__
-+ #define AFMT_S16_NE AFMT_S16_LE
-+ #elif defined __mips__
-+ #define AFMT_S16_NE AFMT_S16_BE
-+ #endif
-+ /* FIXME are these correct? */
-+#endif
- i = AFMT_S16_NE; /* Use NATIVE endian format... */
- if (ioctl (oss_fd, SNDCTL_DSP_SETFMT, &i)) {
- fprintf(stderr, "[PCM-OSS] Failed to set device output format\n");