mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 20:11:44 +00:00
------------------------------------------------------------------------
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:
parent
4ba750bc7b
commit
26e60cd5a7
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue