aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 33580dad..fd5b8894 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -802,6 +802,13 @@ static void alc_initconfig(void)
else ERR("Failed to open log file '%s'\n", str);
}
+ {
+ char buf[1024] = "";
+ int len = snprintf(buf, sizeof(buf), "%s", BackendList[0].name);
+ for(i = 1;BackendList[i].name;i++)
+ len += snprintf(buf+len, sizeof(buf)-len, ", %s", BackendList[i].name);
+ TRACE("Supported backends: %s\n", buf);
+ }
ReadALConfig();
capfilter = 0;