Fix needing -fpermissive
FossilOrigin-Name: bd82b5a5b17fdeacf6b3133104b958a1597e5e16379280cf0bcfef7e7fef1468
This commit is contained in:
parent
ea315c4a21
commit
04fa50a332
11 changed files with 20 additions and 18 deletions
|
@ -184,7 +184,7 @@ renderents() // show sparkly thingies for map entities in edit mode
|
|||
entity &e = ents[i];
|
||||
if (e.type == NOTUSED)
|
||||
continue;
|
||||
vec v = {e.x, e.y, e.z};
|
||||
vec v = {(float)e.x, (float)e.y, (float)e.z};
|
||||
particle_splash(2, 2, 40, v);
|
||||
};
|
||||
int e = closestent();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue