diff options
author | Chris Robinson <[email protected]> | 2008-07-22 12:39:10 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2008-07-22 12:39:10 -0700 |
commit | 87b5d7bc7ba9c9a262332cfbebd68602869a11ca (patch) | |
tree | 2d3ac276e2cce56d3a4e945e800e372dd9eff87a /OpenAL32 | |
parent | 646714b5858056470c328413e2c99efac9a046f5 (diff) |
Store extension list with a pointer, not a per-context array
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index 15512e7e..66dcaaac 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -198,7 +198,7 @@ struct ALCcontext_struct ALint lNumStereoSources; ALCdevice *Device; - ALCchar ExtensionList[1024]; + const ALCchar *ExtensionList; struct bs2b *bs2b; |