mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-09 20:29:10 +02:00
Fix the class ID conversion in plugin factory
This is what you get for mindlessly copy-pasting.
This commit is contained in:
@@ -66,7 +66,7 @@ YaPluginFactory::ConstructArgs::ConstructArgs(
|
|||||||
// plugins. See `WineUID` for more information.
|
// plugins. See `WineUID` for more information.
|
||||||
ArrayUID native_uid = WineUID(info.cid).get_native_uid();
|
ArrayUID native_uid = WineUID(info.cid).get_native_uid();
|
||||||
std::copy(native_uid.begin(), native_uid.end(),
|
std::copy(native_uid.begin(), native_uid.end(),
|
||||||
class_infos_1[i]->cid);
|
class_infos_2[i]->cid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -88,7 +88,7 @@ YaPluginFactory::ConstructArgs::ConstructArgs(
|
|||||||
// plugins. See `WineUID` for more information.
|
// plugins. See `WineUID` for more information.
|
||||||
ArrayUID native_uid = WineUID(info.cid).get_native_uid();
|
ArrayUID native_uid = WineUID(info.cid).get_native_uid();
|
||||||
std::copy(native_uid.begin(), native_uid.end(),
|
std::copy(native_uid.begin(), native_uid.end(),
|
||||||
class_infos_1[i]->cid);
|
class_infos_unicode[i]->cid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user