mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
[Summary] Fixed potential bug
[Review] GZharun
This commit is contained in:
parent
ab39c6e818
commit
baa41a5907
1 changed files with 4 additions and 0 deletions
|
|
@ -487,6 +487,8 @@ WavesAudioBackend::port_is_physical (PortHandle port_handle) const
|
|||
void
|
||||
WavesAudioBackend::get_physical_outputs (DataType type, std::vector<std::string>& names)
|
||||
{
|
||||
names.clear();
|
||||
|
||||
// COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::get_physical_outputs ():" << std::endl << "\tdatatype = " << type << std::endl;
|
||||
|
||||
switch (type) {
|
||||
|
|
@ -511,6 +513,8 @@ WavesAudioBackend::get_physical_outputs (DataType type, std::vector<std::string>
|
|||
void
|
||||
WavesAudioBackend::get_physical_inputs (DataType type, std::vector<std::string>& names)
|
||||
{
|
||||
names.clear();
|
||||
|
||||
// COMMENTED DBG LOGS */ std::cout << "WavesAudioBackend::get_physical_inputs ():" << std::endl << "\tdatatype = " << type << std::endl;
|
||||
switch (type) {
|
||||
case ARDOUR::DataType::AUDIO: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue