diff options
author | Chris Robinson <[email protected]> | 2013-10-28 17:04:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-28 17:04:44 -0700 |
commit | 6fd857739c3aa9534f333153d8d7067322974dd3 (patch) | |
tree | a0396031938dde613674da019c0581d098963674 | |
parent | 21f1e54cb9498ae282bab04db7680987b86da619 (diff) |
Support capture backends with the new interface
-rw-r--r-- | Alc/ALc.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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; } |