Gotta love late merging.

This commit is contained in:
Jason Felds
2011-07-03 17:48:23 -04:00
3 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -92,7 +92,7 @@ int MersenneTwister::operator()()
void fapproach( float& val, float other_val, float to_move )
{
ASSERT_M( to_move >= 0, ssprintf("to_move: %f", to_move) );
ASSERT_M( to_move >= 0, ssprintf("to_move: %f < 0", to_move) );
if( val == other_val )
return;
float fDelta = other_val - val;