aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/panning.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-07-03 23:26:33 -0700
committerChris Robinson <[email protected]>2019-07-03 23:26:33 -0700
commit949507c891035a4b14d6c06ab5bee1f56e6c24cb (patch)
treeec553fdae3517954c080e9d820e7e182b1abc021 /Alc/panning.cpp
parent9a51ca0a782764c97c5c393b799ff76b7b6fb75f (diff)
Use a span for RealMixParams
Diffstat (limited to 'Alc/panning.cpp')
-rw-r--r--Alc/panning.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/Alc/panning.cpp b/Alc/panning.cpp
index 13114c5f..ba0b76ec 100644
--- a/Alc/panning.cpp
+++ b/Alc/panning.cpp
@@ -120,15 +120,9 @@ void AllocChannels(ALCdevice *device, const ALuint main_chans, const ALuint real
device->Dry.Buffer = device->MixBuffer.data();
device->Dry.NumChannels = main_chans;
if(real_chans != 0)
- {
- device->RealOut.Buffer = device->Dry.Buffer + device->Dry.NumChannels;
- device->RealOut.NumChannels = real_chans;
- }
+ device->RealOut.Buffer = {device->Dry.Buffer+device->Dry.NumChannels, real_chans};
else
- {
- device->RealOut.Buffer = device->Dry.Buffer;
- device->RealOut.NumChannels = device->Dry.NumChannels;
- }
+ device->RealOut.Buffer = {device->Dry.Buffer, device->Dry.NumChannels};
}