aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/backends/opensl.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-06-09 02:20:30 -0700
committerChris Robinson <[email protected]>2019-06-09 02:20:30 -0700
commit90d25e5187ca50a6e978603fabb6395035ad0db5 (patch)
treeb44cddd07f7f17227e60b049659bd999a11e78fb /Alc/backends/opensl.cpp
parent2e154069c6aa3bfc9d00d420e2f508a4127dd649 (diff)
Make sure the bitfield indices are constants
Diffstat (limited to 'Alc/backends/opensl.cpp')
-rw-r--r--Alc/backends/opensl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/backends/opensl.cpp b/Alc/backends/opensl.cpp
index 37495abe..be483338 100644
--- a/Alc/backends/opensl.cpp
+++ b/Alc/backends/opensl.cpp
@@ -361,7 +361,7 @@ ALCboolean OpenSLPlayback::reset()
mRing = nullptr;
#if 0
- if(!mDevice->Flags.get(FrequencyRequest))
+ if(!mDevice->Flags.get<FrequencyRequest>())
{
/* FIXME: Disabled until I figure out how to get the Context needed for
* the getSystemService call.