mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-07 20:10:13 +02:00
Fix plugin group socket name generation
I'm pretty sure you're supposed to be able to format `size_t` values, why does this break the stringstream?
This commit is contained in:
@@ -170,7 +170,9 @@ boost::filesystem::path generate_group_endpoint(
|
||||
PluginArchitecture architecture) {
|
||||
std::ostringstream socket_name;
|
||||
socket_name << "yabridge-group-" << group_name << "-"
|
||||
<< std::hash<std::string>{}(wine_prefix.string()) << "-";
|
||||
<< std::to_string(
|
||||
std::hash<std::string>{}(wine_prefix.string()))
|
||||
<< "-";
|
||||
switch (architecture) {
|
||||
case PluginArchitecture::vst_32:
|
||||
socket_name << "x32";
|
||||
|
||||
Reference in New Issue
Block a user