aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/null.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-19 00:23:26 -0700
committerChris Robinson <[email protected]>2011-08-19 00:30:05 -0700
commit6ba5128f722293a48b58c42385a5e1ff09f26e94 (patch)
treedf52b083b722d5d66ed894807ae155686eb226ae /Alc/null.c
parentc96a6c2b1bb90317fd95dfddbec4f492c17fef50 (diff)
Use separate lists for playback and capture backends
Diffstat (limited to 'Alc/null.c')
-rw-r--r--Alc/null.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/Alc/null.c b/Alc/null.c
index 76c5af1c..dd1ac216 100644
--- a/Alc/null.c
+++ b/Alc/null.c
@@ -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,