Fix needing -fpermissive
FossilOrigin-Name: bd82b5a5b17fdeacf6b3133104b958a1597e5e16379280cf0bcfef7e7fef1468
This commit is contained in:
parent
ea315c4a21
commit
04fa50a332
11 changed files with 20 additions and 18 deletions
|
@ -317,7 +317,8 @@ checkitems()
|
|||
continue;
|
||||
if (OUTBORD(e.x, e.y))
|
||||
continue;
|
||||
vec v = {e.x, e.y, S(e.x, e.y)->floor + player1->eyeheight};
|
||||
vec v = {(float)e.x, (float)e.y,
|
||||
(float)S(e.x, e.y)->floor + player1->eyeheight};
|
||||
vdist(dist, t, player1->o, v);
|
||||
if (dist < (e.type == TELEPORT ? 4 : 2.5))
|
||||
pickup(i, player1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue