diff options
author | Chris Robinson <[email protected]> | 2023-05-08 14:47:19 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-05-08 14:47:19 -0700 |
commit | e42681c4472b8a149a8f1e68614e4f5ee5d04fb0 (patch) | |
tree | cc01c5aeddf58f56d0a82f065ff9265fa7dd5661 /al/state.cpp | |
parent | 755a6e15b5665914a6d67157abc1060746e658b0 (diff) |
Store extension strings individually
And dynamically build the full AL_EXTENSIONS string
Diffstat (limited to 'al/state.cpp')
-rw-r--r-- | al/state.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/state.cpp b/al/state.cpp index fb3186c7..cb2afd6c 100644 --- a/al/state.cpp +++ b/al/state.cpp @@ -560,7 +560,7 @@ START_API_FUNC break; case AL_EXTENSIONS: - value = context->mExtensionList; + value = context->mExtensionsString.c_str(); break; case AL_NO_ERROR: |