Skip to content

Commit

Permalink
Make AUv2 host name consistent with VST3 host name (#286)
Browse files Browse the repository at this point in the history
by redacting the phrase "-wrapper"
  • Loading branch information
baconpaul authored Aug 14, 2024
1 parent 5aad9fe commit ec2f09c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/detail/auv2/auv2_base_classes.h
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ class WrapAsAUV2 : public ausdk::AUBase,
_hostname.append(")");
CFRelease(myVersionString);
}
_hostname.append(" (CLAP-as-AUv2-wrapper)");
_hostname.append(" (CLAP-as-AUv2)");
}
return _hostname.c_str();
}
Expand Down Expand Up @@ -535,7 +535,7 @@ class WrapAsAUV2 : public ausdk::AUBase,
bool _midi_understands_midi2 = false;
// std::vector<clap_note_port_info_t> _midi_outports_info;

std::string _hostname = "CLAP-as-AUv2-wrapper";
std::string _hostname = "CLAP-as-AUv2";

#ifdef DUAL_SCHEDULING_ENABLED
bool _midi_dualscheduling_mode = false;
Expand Down

0 comments on commit ec2f09c

Please sign in to comment.