diff options
Diffstat (limited to 'router/alc.cpp')
-rw-r--r-- | router/alc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/router/alc.cpp b/router/alc.cpp index 0f552523..6620b6a7 100644 --- a/router/alc.cpp +++ b/router/alc.cpp @@ -11,6 +11,7 @@ #include <array> #include "AL/alc.h" +#include "alstring.h" #include "router.h" @@ -539,7 +540,7 @@ ALC_API ALCboolean ALC_APIENTRY alcIsExtensionPresent(ALCdevice *device, const A ptr = alcExtensionList; while(ptr && *ptr) { - if(strncasecmp(ptr, extname, len) == 0 && (ptr[len] == '\0' || isspace(ptr[len]))) + if(al::strncasecmp(ptr, extname, len) == 0 && (ptr[len] == '\0' || isspace(ptr[len]))) return ALC_TRUE; if((ptr=strchr(ptr, ' ')) != nullptr) { |