aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alu.cpp
diff options
context:
space:
mode:
authorChris Robinson <chris.kcat@gmail.com>2018-11-20 05:01:08 -0800
committerChris Robinson <chris.kcat@gmail.com>2018-11-20 05:01:08 -0800
commit1df42c4a0f988c2736e9d2d2929d0f23ad2538be (patch)
treee036f53082ee4174a687130a98afebb0b7a5194f /Alc/alu.cpp
parent66fdd027d027058792d56da741a7660d8646c9df (diff)
Use a unique_ptr for the default effect slot
Diffstat (limited to 'Alc/alu.cpp')
-rw-r--r--Alc/alu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alu.cpp b/Alc/alu.cpp
index cc48a4bf..68387f7b 100644
--- a/Alc/alu.cpp
+++ b/Alc/alu.cpp
@@ -1043,7 +1043,7 @@ void CalcNonAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *props, c
{
SendSlots[i] = props->Send[i].Slot;
if(!SendSlots[i] && i == 0)
- SendSlots[i] = ALContext->DefaultSlot;
+ SendSlots[i] = ALContext->DefaultSlot.get();
if(!SendSlots[i] || SendSlots[i]->Params.EffectType == AL_EFFECT_NULL)
{
SendSlots[i] = NULL;
@@ -1117,7 +1117,7 @@ void CalcAttnSourceParams(ALvoice *voice, const struct ALvoiceProps *props, cons
{
SendSlots[i] = props->Send[i].Slot;
if(!SendSlots[i] && i == 0)
- SendSlots[i] = ALContext->DefaultSlot;
+ SendSlots[i] = ALContext->DefaultSlot.get();
if(!SendSlots[i] || SendSlots[i]->Params.EffectType == AL_EFFECT_NULL)
{
SendSlots[i] = NULL;