mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-14 16:01:46 +00:00
game: code style cleanup
This commit is contained in:
parent
1fdb0f81e6
commit
89719b4a27
4 changed files with 10 additions and 10 deletions
|
@ -100,12 +100,12 @@ realcheck:
|
|||
if (ent->gravityVector[2] < 0)
|
||||
{
|
||||
start[2] = mins[2];
|
||||
stop[2] = start[2] - STEPSIZE - STEPSIZE;
|
||||
stop[2] = start[2] - (2 * STEPSIZE);
|
||||
}
|
||||
else
|
||||
{
|
||||
start[2] = maxs[2];
|
||||
stop[2] = start[2] + STEPSIZE + STEPSIZE;
|
||||
stop[2] = start[2] + (2 * STEPSIZE);
|
||||
}
|
||||
|
||||
trace = gi.trace(start, vec3_origin, vec3_origin,
|
||||
|
|
Loading…
Reference in a new issue