diff options
author | Chris Robinson <[email protected]> | 2012-04-27 00:45:42 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-27 01:36:13 -0700 |
commit | 549d542a316c1f557c8042d9fc2b409bcd999872 (patch) | |
tree | 16b02e7a55e3bd045df8ea8336e5ee5ebd371c11 /Alc/ALc.c | |
parent | 2cdb58fb850f085b801c3d33b82512efd083020c (diff) |
Reorganize some ALsource fields
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r-- | Alc/ALc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1614,8 +1614,8 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) if(source->Send[s].Slot) DecrementRef(&source->Send[s].Slot->ref); source->Send[s].Slot = NULL; - source->Send[s].WetGain = 1.0f; - source->Send[s].WetGainHF = 1.0f; + source->Send[s].Gain = 1.0f; + source->Send[s].GainHF = 1.0f; s++; } source->NeedsUpdate = AL_FALSE; |