aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALu.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2009-11-27 20:05:21 -0800
committerChris Robinson <[email protected]>2009-11-27 20:05:21 -0800
commit98ce1d14c12bf164206b1f0d3ab4dca6d627c8be (patch)
tree062296b8c92b0c5e43217b0d2ce8e902bc39e594 /Alc/ALu.c
parent69f9ab88b9b9ad1b14bd1a143af230eab2a15b61 (diff)
Update AL_EXTX_source_distance_model to require explicit enabling
The in-progress spec has been updated to reflect this
Diffstat (limited to 'Alc/ALu.c')
-rw-r--r--Alc/ALu.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/ALu.c b/Alc/ALu.c
index fa2c92ea..54369c4b 100644
--- a/Alc/ALu.c
+++ b/Alc/ALu.c
@@ -589,7 +589,8 @@ static ALvoid CalcSourceParams(const ALCcontext *ALContext, ALsource *ALSource,
RoomRolloff[i] += ALSource->Send[i].Slot->effect.Reverb.RoomRolloffFactor;
}
- switch(ALSource->DistanceModel)
+ switch(ALContext->SourceDistanceModel ? ALSource->DistanceModel :
+ ALContext->DistanceModel)
{
case AL_INVERSE_DISTANCE_CLAMPED:
Distance=__max(Distance,MinDist);