Skip to content

Commit

Permalink
sndio: Patched to compile if SIO_DEVANY isn't defined.
Browse files Browse the repository at this point in the history
(It isn't in whatever Raspbian is currently shipping.)
  • Loading branch information
icculus committed Sep 2, 2017
1 parent c26946e commit 3267398
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/audio/sndio/SDL_sndioaudio.c
Expand Up @@ -48,6 +48,10 @@
#define INFTIM -1
#endif

#ifndef SIO_DEVANY
#define SIO_DEVANY "default"
#endif

static struct sio_hdl * (*SNDIO_sio_open)(const char *, unsigned int, int);
static void (*SNDIO_sio_close)(struct sio_hdl *);
static int (*SNDIO_sio_setpar)(struct sio_hdl *, struct sio_par *);
Expand Down

0 comments on commit 3267398

Please sign in to comment.