Use the AuxSendAuto property of the effect slot
This commit is contained in:
@@ -302,7 +302,9 @@ static ALvoid CalcSourceParams(ALCcontext *ALContext, ALsource *ALSource,
|
||||
|
||||
// Source Gain + Attenuation
|
||||
DryMix = SourceVolume * flAttenuation;
|
||||
WetMix = SourceVolume * (ALSource->WetGainAuto ? RoomAttenuation : 1.0f);
|
||||
WetMix = SourceVolume * ((ALSource->WetGainAuto &&
|
||||
ALSource->Send[0].Slot.AuxSendAuto) ?
|
||||
RoomAttenuation : 1.0f);
|
||||
|
||||
// Clamp to Min/Max Gain
|
||||
DryMix = __min(DryMix,MaxVolume);
|
||||
|
||||
@@ -185,7 +185,6 @@ AL_API ALvoid AL_APIENTRY alAuxiliaryEffectSloti(ALuint effectslot, ALenum param
|
||||
break;
|
||||
|
||||
case AL_EFFECTSLOT_AUXILIARY_SEND_AUTO:
|
||||
/* FIXME: Unused */
|
||||
if(iValue == AL_TRUE || iValue == AL_FALSE)
|
||||
ALEffectSlot->AuxSendAuto = iValue;
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user