Skip to content

Commit

Permalink
error in DPF input portgroups template
Browse files Browse the repository at this point in the history
  • Loading branch information
dromer committed Oct 11, 2023
1 parent 4fbaa17 commit a2568c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hvcc/generators/c2dpf/templates/HeavyDPF_PortGroups.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ void {{class_name}}::initAudioPort(bool input, uint32_t index, AudioPort& port)
{%- for group, gConfig in meta.port_groups.input.items() %}
{%- for port, value in gConfig.items() %}
case {{value}}:
port.name = "Output {{port}} ({{group}})";
port.symbol = "out_{{port|lower}}_{{group|lower}}";
port.name = "Input {{port}} ({{group}})";
port.symbol = "in_{{port|lower}}_{{group|lower}}";
port.groupId = kPortGroup{{group}};
break;
{%- endfor %}
Expand Down

0 comments on commit a2568c7

Please sign in to comment.