make a distinction between total channels with or without the embedded bed chans

This commit is contained in:
Ben Loftis 2024-03-11 08:29:56 -05:00
parent d03cdf86e1
commit 310e7f2279
1 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ public:
return _current_n_channels;
}
size_t total_n_channels () const {
return _total_n_channels;
size_t total_n_channels (bool with_beds = true) const {
return _total_n_channels - (with_beds ? 0 : 10);
}
std::shared_ptr<LV2Plugin> surround_processor () const {