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/null.c | |
parent | c96a6c2b1bb90317fd95dfddbec4f492c17fef50 (diff) |
Use separate lists for playback and capture backends
Diffstat (limited to 'Alc/null.c')
-rw-r--r-- | Alc/null.c | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -125,20 +125,12 @@ static void null_stop_playback(ALCdevice *device) } -static ALCboolean null_open_capture(ALCdevice *device, const ALCchar *deviceName) -{ - (void)device; - (void)deviceName; - return ALC_FALSE; -} - - static const BackendFuncs null_funcs = { null_open_playback, null_close_playback, null_reset_playback, null_stop_playback, - null_open_capture, + NULL, NULL, NULL, NULL, |