Use a saner "infinity".

8e6 is just too big for reasonable floating point.
This fixes the bogus portals.
This commit is contained in:
Bill Currie 2011-12-06 20:50:09 +09:00
parent 632817fed5
commit 2b65f81b72

View file

@ -39,7 +39,7 @@ static __attribute__ ((used)) const char rcsid[] =
#include "QF/winding.h"
#define BOGUS (8e6)
#define BOGUS (65336.0)
/** \addtogroup qfbsp_winding
*/