Fix incorrect type definition in vst.hpp

This commit is contained in:
Xaymar
2025-08-06 04:06:23 +02:00
parent ce354e3824
commit fa02ffef09
+2 -2
View File
@@ -31,8 +31,8 @@
// Variable size variant of vst_speaker_arrangement. // Variable size variant of vst_speaker_arrangement.
template<size_t T> template<size_t T>
struct vst_speaker_arrangement_dynamic_t { struct vst_speaker_arrangement_dynamic_t {
VST_ARRANGEMENT_TYPE type; // See VST_SPEAKER_ARRANGEMENT_TYPE VST_SPEAKER_ARRANGEMENT_TYPE type; // See VST_SPEAKER_ARRANGEMENT_TYPE
int32_t channels; // Number of channels in speakers. int32_t channels; // Number of channels in speakers.
vst_speaker_properties_t speakers[T]; // Array of speaker properties, actual size defined by channels. vst_speaker_properties_t speakers[T]; // Array of speaker properties, actual size defined by channels.
}; };