Grr, quakespasm's makefile doesn't do dependancies properly.

This commit is contained in:
Shpoike 2021-03-06 06:43:00 +00:00
parent 6ebdec2f1e
commit 4b1133efc3

View file

@ -53,7 +53,7 @@ void TraceLine (vec3_t start, vec3_t end, vec3_t impact)
trace_t trace;
memset (&trace, 0, sizeof(trace));
SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
SV_RecursiveHullCheck (cl.worldmodel->hulls, start, end, &trace, CONTENTMASK_ANYSOLID);
VectorCopy (trace.endpos, impact);
}