aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-10-28 17:04:44 -0700
committerChris Robinson <[email protected]>2013-10-28 17:04:44 -0700
commit6fd857739c3aa9534f333153d8d7067322974dd3 (patch)
treea0396031938dde613674da019c0581d098963674 /Alc
parent21f1e54cb9498ae282bab04db7680987b86da619 (diff)
Support capture backends with the new interface
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index a80863bc..53a3917b 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1036,13 +1036,12 @@ static void alc_initconfig(void)
PlaybackBackend = BackendList[i];
TRACE("Added \"%s\" for playback\n", PlaybackBackend.name);
}
-#if 0
if(!CaptureBackend.name && VCALL(factory,support)(ALCbackend_Capture))
{
CaptureBackend = BackendList[i];
TRACE("Added \"%s\" for capture\n", CaptureBackend.name);
}
-#endif
+
continue;
}