vst3 typo bug fix

This commit is contained in:
Paolo Marrone 2025-07-08 15:15:23 +02:00
parent 50118f66a4
commit 69cff1ebab

View File

@ -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) {