diff options
author | Chris Robinson <[email protected]> | 2019-10-05 16:11:38 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-10-05 16:11:38 -0700 |
commit | 267b79f337f2189542ce2582aeed84b84c6e987e (patch) | |
tree | 90a2e65345d4f242af7467e163f7465adbc622e8 /alc/alc.cpp | |
parent | 1bb93f4fc213e4a93aedd4937ef2a8fa0d160b25 (diff) |
Avoid duplicate structs
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 03ed35cc..792ead3e 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -2193,7 +2193,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) std::fill(std::begin(voice.mProps.Send)+num_sends, std::end(voice.mProps.Send), ALvoiceProps::SendData{}); - std::fill(voice.mSend.begin()+num_sends, voice.mSend.end(), ALvoice::SendData{}); + std::fill(voice.mSend.begin()+num_sends, voice.mSend.end(), ALvoice::TargetData{}); auto clear_chan_sends = [num_sends](ALvoice::ChannelData &chandata) -> void { std::fill(chandata.mWetParams.begin()+num_sends, chandata.mWetParams.end(), |