aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32
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 /OpenAL32
parentcc3e2a838f245770af3d773e8d2c461b9912e392 (diff)
Use a unique_ptr for the FrontStablizer
Diffstat (limited to 'OpenAL32')
-rw-r--r--OpenAL32/Include/alMain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h
index 41465c1d..c57d87ba 100644
--- a/OpenAL32/Include/alMain.h
+++ b/OpenAL32/Include/alMain.h
@@ -709,7 +709,7 @@ struct ALCdevice_struct {
*/
RealMixParams RealOut;
- struct FrontStablizer *Stablizer{nullptr};
+ std::unique_ptr<FrontStablizer> Stablizer;
std::unique_ptr<Compressor> Limiter;