diff options
author | Chris Robinson <[email protected]> | 2011-10-06 01:16:07 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-10-06 01:16:07 -0700 |
commit | a7d3779dfafbc7b5011ea7d1b252d94daed969f6 (patch) | |
tree | 02521cea8acdf465152acc802329b706daeffd97 /Alc/ALu.c | |
parent | 75fee8c11f76889285e3b68cc1f3d13e92dacc26 (diff) |
Check for the HRTF object instead of a flag
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r-- | Alc/ALu.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -178,7 +178,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) } BufferListItem = BufferListItem->next; } - if(ALSource->VirtualChannels && (Device->Flags&DEVICE_USE_HRTF)) + if(ALSource->VirtualChannels && Device->Hrtf) ALSource->Params.DoMix = SelectHrtfMixer((ALSource->Params.Step==FRACTIONONE) ? POINT_RESAMPLER : Resampler); else @@ -268,7 +268,7 @@ ALvoid CalcNonAttnSourceParams(ALsource *ALSource, const ALCcontext *ALContext) for(c = 0;c < num_channels;c++) SrcMatrix[c][chans[c]] += DryGain * ListenerGain; } - else if((Device->Flags&DEVICE_USE_HRTF)) + else if(Device->Hrtf) { for(c = 0;c < num_channels;c++) { @@ -689,14 +689,14 @@ ALvoid CalcSourceParams(ALsource *ALSource, const ALCcontext *ALContext) } BufferListItem = BufferListItem->next; } - if((Device->Flags&DEVICE_USE_HRTF)) + if(Device->Hrtf) ALSource->Params.DoMix = SelectHrtfMixer((ALSource->Params.Step==FRACTIONONE) ? POINT_RESAMPLER : Resampler); else ALSource->Params.DoMix = SelectMixer((ALSource->Params.Step==FRACTIONONE) ? POINT_RESAMPLER : Resampler); - if((Device->Flags&DEVICE_USE_HRTF)) + if(Device->Hrtf) { // Use a binaural HRTF algorithm for stereo headphone playback ALfloat delta, ev = 0.0f, az = 0.0f; |