aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-11-22 04:53:29 -0800
committerChris Robinson <[email protected]>2018-11-22 04:53:29 -0800
commit671ed1abf8cc246c6e2b5f9ae3bac132fb9af519 (patch)
tree66402274da934f19f30da30b2acb8a25a6958a53 /Alc/alc.cpp
parentcc3e2a838f245770af3d773e8d2c461b9912e392 (diff)
Use a unique_ptr for the FrontStablizer
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r--Alc/alc.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp
index b942064f..9e4d1ac9 100644
--- a/Alc/alc.cpp
+++ b/Alc/alc.cpp
@@ -52,6 +52,7 @@
#include "alu.h"
#include "alconfig.h"
#include "ringbuffer.h"
+#include "filters/splitter.h"
#include "fpu_modes.h"
#include "cpu_caps.h"
@@ -2426,9 +2427,6 @@ ALCdevice_struct::~ALCdevice_struct()
bformatdec_free(&AmbiDecoder);
ambiup_free(&AmbiUp);
-
- al_free(Stablizer);
- Stablizer = nullptr;
}