Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Novak <jnovak@skedulo.com>2022-06-17 09:55:24 +0300
committerJohn Novak <jnovak@skedulo.com>2022-06-17 09:59:11 +0300
commit5840b685423e401f1ee81eab23cc8d657a879017 (patch)
tree2e9ebf5871f2a4100aa97732f3973824bc8f4003
parent335c392e6088e5aad437cb3e3addf1b713376f0a (diff)
-rw-r--r--src/hardware/adlib_gold.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hardware/adlib_gold.h b/src/hardware/adlib_gold.h
index 5cee49946..cc47ba3be 100644
--- a/src/hardware/adlib_gold.h
+++ b/src/hardware/adlib_gold.h
@@ -72,8 +72,8 @@ public:
void Process(const int16_t *in, const uint32_t frames, float *out) noexcept;
private:
- std::unique_ptr<SurroundProcessor> surround_processor;
- std::unique_ptr<StereoProcessor> stereo_processor;
+ std::unique_ptr<SurroundProcessor> surround_processor = {};
+ std::unique_ptr<StereoProcessor> stereo_processor = {};
};
#endif