diff options
author | Chris Robinson <[email protected]> | 2014-05-11 01:36:18 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-11 01:40:44 -0700 |
commit | 851a917b0347c3b47c9533f54c0a7ee1be3ffe45 (patch) | |
tree | f65e132998e82b4f3437a6e592a5880e3b0c5815 /OpenAL32/alSource.c | |
parent | e78acce6523ac69aa04e17053cf5b72470eb90c1 (diff) |
Use a struct to store the source's direct gain/gainhf properties
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 456ab7ca..8d7ab5e6 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -661,13 +661,13 @@ static ALboolean SetSourceiv(ALsource *Source, ALCcontext *Context, SrcIntProp p LockContext(Context); if(!filter) { - Source->DirectGain = 1.0f; - Source->DirectGainHF = 1.0f; + Source->Direct.Gain = 1.0f; + Source->Direct.GainHF = 1.0f; } else { - Source->DirectGain = filter->Gain; - Source->DirectGainHF = filter->GainHF; + Source->Direct.Gain = filter->Gain; + Source->Direct.GainHF = filter->GainHF; } UnlockContext(Context); Source->NeedsUpdate = AL_TRUE; @@ -2301,8 +2301,8 @@ static ALvoid InitSourceParams(ALsource *Source) Source->queue = NULL; Source->current_buffer = NULL; - Source->DirectGain = 1.0f; - Source->DirectGainHF = 1.0f; + Source->Direct.Gain = 1.0f; + Source->Direct.GainHF = 1.0f; for(i = 0;i < MAX_SENDS;i++) { Source->Send[i].Gain = 1.0f; |