------------------------------------------------------------------------

r4200 | acceptthis | 2013-02-14 22:50:01 +0000 (Thu, 14 Feb 2013) | 1 line

fix r_rockettrail 0 still giving a default trail.
------------------------------------------------------------------------


git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4198 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2013-03-12 22:54:54 +00:00
parent 4ba750bc7b
commit 26e60cd5a7
1 changed files with 2 additions and 1 deletions

View File

@ -300,7 +300,8 @@ void P_SelectableTrail(model_t *model, cvar_t *selection, int mdleffect, int mdl
case 0: // check for string, otherwise no trail
if (selection->string[0] == '0')
{
model->particletrail = P_INVALID;
model->particletrail = P_INVALID;
model->traildefaultindex = -1;
break;
}
else