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/opensl.c | |
parent | c96a6c2b1bb90317fd95dfddbec4f492c17fef50 (diff) |
Use separate lists for playback and capture backends
Diffstat (limited to 'Alc/opensl.c')
-rw-r--r-- | Alc/opensl.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Alc/opensl.c b/Alc/opensl.c index 744548fb..88d05505 100644 --- a/Alc/opensl.c +++ b/Alc/opensl.c @@ -384,20 +384,13 @@ static void opensl_stop_playback(ALCdevice *Device) data->bufferSize = 0; } -static ALCboolean opensl_open_capture(ALCdevice *Device, const ALCchar *deviceName) -{ - return ALC_FALSE; - (void)Device; - (void)deviceName; -} - static const BackendFuncs opensl_funcs = { opensl_open_playback, opensl_close_playback, opensl_reset_playback, opensl_stop_playback, - opensl_open_capture, + NULL, NULL, NULL, NULL, |