aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-08-28 19:28:41 -0700
committerChris Robinson <[email protected]>2011-08-28 19:28:41 -0700
commit783375af5623e8290c0080859539445762cef34f (patch)
tree2f46bcfdfde634432f79d9e2c52ac64778443dfb /OpenAL32/Include
parent1d9f21f6dce971838e0cb148f3b92a9d7b512700 (diff)
Use a list of contexts in the device instead of an array
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r--OpenAL32/Include/alMain.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 357090a6..75dd7ec8 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -471,8 +471,8 @@ struct ALCdevice_struct
ALfloat PendingClicks[MAXCHANNELS];
// Contexts created on this device
- ALCcontext **Contexts;
- ALuint NumContexts;
+ ALCcontext *ContextList;
+ ALuint NumContexts;
BackendFuncs *Funcs;
void *ExtraData; // For the backend's use