mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
Fix/amend previous commit
This commit is contained in:
parent
59d074bcfd
commit
cbb116026d
1 changed files with 2 additions and 1 deletions
|
|
@ -128,12 +128,13 @@ InstrumentSelector::build_instrument_list()
|
|||
std::string suffix;
|
||||
|
||||
#ifdef MIXBUS
|
||||
uint32_t n_outs = p->n_outputs.n_audio();
|
||||
if (n_outs > 2) {
|
||||
suffix = string_compose(_("%1 outs"), n_outs);
|
||||
}
|
||||
#else
|
||||
if (p->multichannel_name_ambiguity) {
|
||||
int n_outs = p->n_outputs.n_audio();
|
||||
uint32_t n_outs = p->n_outputs.n_audio();
|
||||
if (n_outs > 2) {
|
||||
suffix = string_compose(_("%1 outs"), n_outs);
|
||||
} else if (n_outs == 2) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue