pr_cmds.c (PF_traceline): Added a FIXME note about the NaN issue with certain progs.dat

git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@278 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-08-14 21:02:31 +00:00
parent 3a6e17e627
commit 14a4a5159e

View file

@ -658,6 +658,7 @@ void PF_traceline (void)
nomonsters = G_FLOAT(OFS_PARM2); nomonsters = G_FLOAT(OFS_PARM2);
ent = G_EDICT(OFS_PARM3); ent = G_EDICT(OFS_PARM3);
/* FIXME FIXME FIXME: Why do we hit this with certain progs.dat ?? */
if (developer.value) { if (developer.value) {
if (IS_NAN(v1[0]) || IS_NAN(v1[1]) || IS_NAN(v1[2]) || if (IS_NAN(v1[0]) || IS_NAN(v1[1]) || IS_NAN(v1[2]) ||
IS_NAN(v2[0]) || IS_NAN(v2[1]) || IS_NAN(v2[2])) { IS_NAN(v2[0]) || IS_NAN(v2[1]) || IS_NAN(v2[2])) {