mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-15 04:50:43 +02:00
Use UID conversion for GetControllerClassId
This commit is contained in:
@@ -1759,7 +1759,7 @@ void Vst3Logger::log_response(
|
||||
if (response.result == Steinberg::kResultOk) {
|
||||
message << ", "
|
||||
<< format_uid(Steinberg::FUID::fromTUID(
|
||||
response.editor_cid.data()));
|
||||
response.editor_cid.get_native_uid().data()));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -73,12 +73,12 @@ class YaComponent : public Steinberg::Vst::IComponent {
|
||||
*/
|
||||
struct GetControllerClassIdResponse {
|
||||
UniversalTResult result;
|
||||
ArrayUID editor_cid;
|
||||
WineUID editor_cid;
|
||||
|
||||
template <typename S>
|
||||
void serialize(S& s) {
|
||||
s.object(result);
|
||||
s.container1b(editor_cid);
|
||||
s.object(editor_cid);
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user