aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'OpenAL32/alSource.cpp')
-rw-r--r--OpenAL32/alSource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.cpp b/OpenAL32/alSource.cpp
index 0eaed61f..c0e48c5c 100644
--- a/OpenAL32/alSource.cpp
+++ b/OpenAL32/alSource.cpp
@@ -52,9 +52,9 @@ namespace {
inline ALvoice *GetSourceVoice(ALsource *source, ALCcontext *context)
{
ALint idx{source->VoiceIdx};
- ALuint sid{source->id};
if(idx >= 0 && idx < context->VoiceCount.load(std::memory_order_relaxed))
{
+ ALuint sid{source->id};
ALvoice *voice{context->Voices[idx]};
if(voice->SourceID.load(std::memory_order_acquire) == sid)
return voice;