Added missing return values in VM calls
These are not supported by the JIT and must always be passed.
This commit is contained in:
parent
02b5f9a2c5
commit
43031375f4
8 changed files with 22 additions and 11 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue