- fixed bad argument count in ScreenJobRunner.Validate call.

This commit is contained in:
Christoph Oelckers 2021-05-21 17:32:36 +02:00
parent 24dbfc7827
commit b0cc5c14e2

View file

@ -345,7 +345,7 @@ bool ScreenJobValidate()
int res;
VMValue parm[] = { runner };
VMReturn ret(&res);
VMCall(func, parm, 2, &ret, 1);
VMCall(func, parm, 1, &ret, 1);
return res;
}
}