sockaddr_qstorage should make no assumptions about where the sa_family member is. Thanks to bigfoot for pointing this out.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@862 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-01-29 02:26:42 +00:00
parent 72a13752b6
commit ae500c07ef
7 changed files with 14 additions and 14 deletions

View file

@ -828,7 +828,7 @@ void R_DefaultTrail (model_t *model)
else if (model->flags & EF_TRACER3)
model->particletrail = AllocateParticleType("t_tracer3");
else if (model->flags & EF_BLOODSHOT)
else if (model->flags & EF_BLOODSHOT) //these are the hexen2 ones.
model->particletrail = AllocateParticleType("t_bloodshot");
else if (model->flags & EF_FIREBALL)
model->particletrail = AllocateParticleType("t_fireball");