diff options
author | Chris Robinson <[email protected]> | 2012-04-27 23:46:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2012-04-27 23:46:51 -0700 |
commit | 2450ee1723daddd8f0977f2589b45e126b1ae62a (patch) | |
tree | ebb8910200865cf92fe583d5990f776cd2311d70 /OpenAL32/Include/alSource.h | |
parent | 67f1cdfcbe537d8f53e90c73d8a2358fa2138791 (diff) |
Use separate methods for the dry and wet mixing loops
Diffstat (limited to 'OpenAL32/Include/alSource.h')
-rw-r--r-- | OpenAL32/Include/alSource.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenAL32/Include/alSource.h b/OpenAL32/Include/alSource.h index 98803115..badf4e18 100644 --- a/OpenAL32/Include/alSource.h +++ b/OpenAL32/Include/alSource.h @@ -123,7 +123,8 @@ typedef struct ALsource /** Current target parameters used for mixing. */ struct { - MixerFunc DoMix; + DryMixerFunc DryMix; + WetMixerFunc WetMix; ALint Step; |