aboutsummaryrefslogtreecommitdiffstats
path: root/al/extension.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'al/extension.cpp')
-rw-r--r--al/extension.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/al/extension.cpp b/al/extension.cpp
index e38d4382..c190ad03 100644
--- a/al/extension.cpp
+++ b/al/extension.cpp
@@ -43,7 +43,7 @@ START_API_FUNC
SETERR_RETURN(context.get(), AL_INVALID_VALUE, AL_FALSE, "NULL pointer");
size_t len{strlen(extName)};
- const char *ptr{context->ExtensionList};
+ const char *ptr{context->mExtensionList};
while(ptr && *ptr)
{
if(strncasecmp(ptr, extName, len) == 0 &&