Really fix windows builds (amend previous commit)

This commit is contained in:
Robin Gareus 2025-10-08 00:58:31 +02:00
parent d97ccc6737
commit 4ef4288b2a
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -1956,10 +1956,10 @@ PortMidiEvent::PortMidiEvent (const PortMidiEvent& other)
XMLNode*
PortAudioBackend::get_state () const {
XMLNode* node = PortEngineSharedImpl::get_state ();
node.set_property ("backend", name ());
node.set_property ("driver", driver_name ());
node.set_property ("input-device", input_device_name ());
node.set_property ("output-device", output_device_name ());
node->set_property ("backend", name ());
node->set_property ("driver", driver_name ());
node->set_property ("input-device", input_device_name ());
node->set_property ("output-device", output_device_name ());
return node;
}