diff options
author | Chris Robinson <[email protected]> | 2011-08-19 00:23:26 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-08-19 00:30:05 -0700 |
commit | 6ba5128f722293a48b58c42385a5e1ff09f26e94 (patch) | |
tree | df52b083b722d5d66ed894807ae155686eb226ae /Alc/sndio.c | |
parent | c96a6c2b1bb90317fd95dfddbec4f492c17fef50 (diff) |
Use separate lists for playback and capture backends
Diffstat (limited to 'Alc/sndio.c')
-rw-r--r-- | Alc/sndio.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/Alc/sndio.c b/Alc/sndio.c index aa6ac0e4..5f9ad0cd 100644 --- a/Alc/sndio.c +++ b/Alc/sndio.c @@ -335,20 +335,12 @@ static void sndio_stop_playback(ALCdevice *device) } -static ALCboolean sndio_open_capture(ALCdevice *device, const ALCchar *deviceName) -{ - (void)device; - (void)deviceName; - return ALC_FALSE; -} - - static const BackendFuncs sndio_funcs = { sndio_open_playback, sndio_close_playback, sndio_reset_playback, sndio_stop_playback, - sndio_open_capture, + NULL, NULL, NULL, NULL, |