From fa02ffef097cdf81d1d248f42f6e14012cdbe696 Mon Sep 17 00:00:00 2001 From: Xaymar Date: Wed, 6 Aug 2025 04:06:23 +0200 Subject: [PATCH] Fix incorrect type definition in vst.hpp --- vst.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vst.hpp b/vst.hpp index 2e50fdf..01db509 100644 --- a/vst.hpp +++ b/vst.hpp @@ -31,8 +31,8 @@ // Variable size variant of vst_speaker_arrangement. template struct vst_speaker_arrangement_dynamic_t { - VST_ARRANGEMENT_TYPE type; // See VST_SPEAKER_ARRANGEMENT_TYPE - int32_t channels; // Number of channels in speakers. + VST_SPEAKER_ARRANGEMENT_TYPE type; // See VST_SPEAKER_ARRANGEMENT_TYPE + int32_t channels; // Number of channels in speakers. vst_speaker_properties_t speakers[T]; // Array of speaker properties, actual size defined by channels. };