aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-12-04 16:38:22 -0800
committerChris Robinson <[email protected]>2018-12-04 16:38:22 -0800
commita94bfd3ec9af053cd4ce777574c2a95c432f5164 (patch)
tree1161b77c220ad8601daad18e5d887c6ba4b4e5bb /Alc/alc.cpp
parent64099105437741233255704733cd69c24b1579ea (diff)
Increase the async event queue size
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r--Alc/alc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp
index 03cbcd53..9e7f2d95 100644
--- a/Alc/alc.cpp
+++ b/Alc/alc.cpp
@@ -2548,7 +2548,7 @@ static ALvoid InitContext(ALCcontext *Context)
listener.Params.mDistanceModel = Context->mDistanceModel;
- Context->AsyncEvents = ll_ringbuffer_create(63, sizeof(AsyncEvent), false);
+ Context->AsyncEvents = ll_ringbuffer_create(511, sizeof(AsyncEvent), false);
StartEventThrd(Context);
}