From 69cff1ebab5ffac5040336ba61b697843293e232 Mon Sep 17 00:00:00 2001 From: Paolo Marrone Date: Tue, 8 Jul 2025 15:15:23 +0200 Subject: [PATCH] vst3 typo bug fix --- templates/vst3/src/vst3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/vst3/src/vst3.c b/templates/vst3/src/vst3.c index 3a9a580..2bb2eaa 100644 --- a/templates/vst3/src/vst3.c +++ b/templates/vst3/src/vst3.c @@ -2177,7 +2177,7 @@ static struct Steinberg_IPlugView* controllerCreateView(void* thisInterface, Ste controller *c = (controller *)((char *)thisInterface - offsetof(controller, vtblIEditController)); size_t i; - for (i = 0; i < c->viewsCount; c++) + for (i = 0; i < c->viewsCount; i++) if (c->views[i] == NULL) break; if (i == c->viewsCount) {