diff options
author | Chris Robinson <[email protected]> | 2018-11-22 04:53:29 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-22 04:53:29 -0800 |
commit | 671ed1abf8cc246c6e2b5f9ae3bac132fb9af519 (patch) | |
tree | 66402274da934f19f30da30b2acb8a25a6958a53 /OpenAL32 | |
parent | cc3e2a838f245770af3d773e8d2c461b9912e392 (diff) |
Use a unique_ptr for the FrontStablizer
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
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; |