aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-06-29 08:55:44 -0700
committerChris Robinson <[email protected]>2017-06-29 08:55:44 -0700
commitcee2d226d22786a7416704a39357759e0022750b (patch)
tree53db939622e33703d9d23246f60c9c18102604d2
parentf08a7b341fc11da84974fe868649af6a0ccd9b3e (diff)
Return the extension list in the router
-rw-r--r--router/alc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/router/alc.c b/router/alc.c
index b15283fb..17ba7013 100644
--- a/router/alc.c
+++ b/router/alc.c
@@ -621,7 +621,7 @@ ALC_API const ALCchar* ALC_APIENTRY alcGetString(ALCdevice *device, ALCenum para
case ALC_OUT_OF_MEMORY:
return alcErrOutOfMemory;
case ALC_EXTENSIONS:
- return "";
+ return alcExtensionList;
case ALC_DEVICE_SPECIFIER:
ClearDeviceList(&DevicesList);