Added missing return values in VM calls

These are not supported by the JIT and must always be passed.
This commit is contained in:
Boondorl 2025-03-19 13:57:26 -04:00 committed by Ricardo Luís Vaz Silva
commit 43031375f4
8 changed files with 22 additions and 11 deletions

View file

@ -215,7 +215,7 @@ bool P_CanCrossLine(AActor *mo, line_t *line, DVector3 next)
assert(VIndex != ~0u);
}
VMValue params[] = { mo, line, next.X, next.Y, next.Z, false };
VMValue params[] = { mo, line, next.X, next.Y, next.Z };
VMReturn ret;
int retval;
ret.IntAt(&retval);