aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2010-05-28 16:41:52 -0700
committerChris Robinson <[email protected]>2010-05-28 16:41:52 -0700
commit880902feccccad61ceb8541b6571ae42a3e56d9a (patch)
tree7a7594e75f64938656d3d4bcbab5c62781a74183 /Alc/ALc.c
parent96cf5b728269915e24fdfde09eb4b9e3091a0980 (diff)
Add a Null Output device
This device will mix and fully process contexts as normal
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index e911bc11..a7c27bad 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -70,6 +70,7 @@ static BackendInfo BackendList[] = {
{ "port", alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs },
#endif
+ { "null", alc_null_init, alc_null_deinit, alc_null_probe, EmptyFuncs },
{ "wave", alc_wave_init, alc_wave_deinit, alc_wave_probe, EmptyFuncs },
{ NULL, NULL, NULL, NULL, EmptyFuncs }