Making computation in 'fx' run-to-run reproducible.

This commit is contained in:
Alan Mishchenko 2011-11-12 22:20:26 -08:00
parent df3e23ae3a
commit cd2f13c09d
1 changed files with 1 additions and 1 deletions

View File

@ -739,7 +739,7 @@ void Fxu_UpdateAddNewDoubles( Fxu_Matrix * p, Fxu_Cube * pCube )
continue;
// to prevent adding duplicated pairs of the new cubes
// do not add the pair, if the current cube is marked
if ( pTemp->pOrder && pTemp >= pCube )
if ( pTemp->pOrder && pTemp->iCube >= pCube->iCube )
continue;
Fxu_MatrixAddDivisor( p, pTemp, pCube );
}