Commit cd2f13c0 by Alan Mishchenko

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

parent df3e23ae
......@@ -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 );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment