diff options
author | Chris Robinson <[email protected]> | 2011-05-01 18:18:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-05-01 18:18:37 -0700 |
commit | eea86ab8916c5e0213dabc404a191bbf0e0affbe (patch) | |
tree | 4755958ea83e6816039c90f1ed788f29a3245579 /Alc/mixer.c | |
parent | d7a452588cf9fc53c14712949c260e91799c6262 (diff) |
Use flags instead of separate bools
Diffstat (limited to 'Alc/mixer.c')
-rw-r--r-- | Alc/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/mixer.c b/Alc/mixer.c index e1ecada8..f229b56a 100644 --- a/Alc/mixer.c +++ b/Alc/mixer.c @@ -566,7 +566,7 @@ static void Mix_##T##_##sampler(ALsource *Source, ALCdevice *Device, \ switch(FmtChannels) \ { \ case FmtMono: \ - if(Device->UseHRTF) \ + if((Device->Flags&DEVICE_USE_HRTF)) \ Mix_Hrtf_##T##_1_##sampler(Source, Device, Data, \ DataPosInt, DataPosFrac, \ OutPos, SamplesToDo, BufferSize); \ |