early-access version 2836

This commit is contained in:
pineappleEA
2022-07-15 13:11:09 +02:00
parent 0e7aef7e36
commit 2a9883730d
78 changed files with 1122 additions and 982 deletions

View File

@@ -545,7 +545,7 @@ CubebSink::CubebSink(std::string_view target_device_name) {
}
cubeb_get_max_channel_count(ctx, &device_channels);
device_channels = std::clamp(device_channels, 2U, 6U);
device_channels = device_channels >= 6U ? 6U : 2U;
}
CubebSink::~CubebSink() {