Commit 08135f2c authored by Max Kellermann's avatar Max Kellermann

output/wasapi: make configuration fields `const`

parent 5907656b
......@@ -230,10 +230,10 @@ private:
class WasapiOutput final : public AudioOutput {
std::atomic_flag not_interrupted = true;
bool is_started = false;
bool is_exclusive;
bool enumerate_devices;
const bool is_exclusive;
const bool enumerate_devices;
#ifdef ENABLE_DSD
bool dop_setting;
const bool dop_setting;
#endif
std::string device_config;
std::shared_ptr<COMWorker> com_worker;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment