aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2015-10-22 10:46:36 -0700
committerChris Robinson <[email protected]>2015-10-22 10:46:36 -0700
commit6fc8cd3b29507b502b61a8a281c2bc5e042cad32 (patch)
treeb5b0b3a9fddf6b9dd84b304e89a3deab48095870 /Alc/ALc.c
parent6689c61ff474657109c5a73827b8733aba7dfd45 (diff)
Convert the PortAudio backend to the new backend API
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 86e29c3a..f5e615e8 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -93,7 +93,7 @@ static struct BackendInfo BackendList[] = {
{ "winmm", ALCwinmmBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },
#endif
#ifdef HAVE_PORTAUDIO
- { "port", NULL, alc_pa_init, alc_pa_deinit, alc_pa_probe, EmptyFuncs },
+ { "port", ALCportBackendFactory_getFactory, NULL, NULL, NULL, EmptyFuncs },
#endif
#ifdef HAVE_OPENSL
{ "opensl", NULL, alc_opensl_init, alc_opensl_deinit, alc_opensl_probe, EmptyFuncs },