diff options
author | Chris Robinson <[email protected]> | 2018-11-19 04:11:21 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-19 04:11:21 -0800 |
commit | a14f39ea06a458e6b3b70e0428264967847da7f4 (patch) | |
tree | 9177828a3223568349a7e1b9e01560b7a45d181d /OpenAL32/event.cpp | |
parent | c01743fe5df8ba4778950176ea38d95c65f25309 (diff) |
Make ll_ringbuffer_write/read take void*/const void*
Diffstat (limited to 'OpenAL32/event.cpp')
-rw-r--r-- | OpenAL32/event.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenAL32/event.cpp b/OpenAL32/event.cpp index fcbcba66..1dc2745f 100644 --- a/OpenAL32/event.cpp +++ b/OpenAL32/event.cpp @@ -21,7 +21,7 @@ static int EventThread(ALCcontext *context) while(LIKELY(!quitnow)) { AsyncEvent evt; - if(ll_ringbuffer_read(context->AsyncEvents, (char*)&evt, 1) == 0) + if(ll_ringbuffer_read(context->AsyncEvents, &evt, 1) == 0) { alsem_wait(&context->EventSem); continue; @@ -43,7 +43,7 @@ static int EventThread(ALCcontext *context) context->EventCb(evt.u.user.type, evt.u.user.id, evt.u.user.param, (ALsizei)strlen(evt.u.user.msg), evt.u.user.msg, context->EventParam ); - } while(ll_ringbuffer_read(context->AsyncEvents, (char*)&evt, 1) != 0); + } while(ll_ringbuffer_read(context->AsyncEvents, &evt, 1) != 0); } return 0; } @@ -64,7 +64,7 @@ void StartEventThrd(ALCcontext *ctx) void StopEventThrd(ALCcontext *ctx) { static constexpr AsyncEvent kill_evt = ASYNC_EVENT(EventType_KillThread); - while(ll_ringbuffer_write(ctx->AsyncEvents, (const char*)&kill_evt, 1) == 0) + while(ll_ringbuffer_write(ctx->AsyncEvents, &kill_evt, 1) == 0) althrd_yield(); alsem_post(&ctx->EventSem); if(ctx->EventThread.joinable()) |