Skip to content

Commit

Permalink
Removed a debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Jul 27, 2011
1 parent abd823a commit aaba10e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/engine/portable/src/smoother.c
Expand Up @@ -113,7 +113,7 @@ void Smoother_AddPos(Smoother* sm, float time, float x, float y, float z, boolea
{
// The new point would be in the past, this is no good.
#ifdef _DEBUG
Con_Message("Smoother_AddPos: DISCARDING new pos.\n");
Con_Message("Smoother_AddPos: DISCARDING new pos, time=%f, now=%f.\n", time, sm->now.time);
#endif
Smoother_Clear(sm);
return;
Expand Down Expand Up @@ -167,9 +167,9 @@ boolean Smoother_Evaluate(const Smoother* sm, float* xyz)

if(!Smoother_IsValid(sm))
{
#ifdef _DEBUG
/*#ifdef _DEBUG
Con_Message("Smoother_Evaluate: sm=%p not valid!\n", sm);
#endif
#endif*/
return false;
}

Expand Down

0 comments on commit aaba10e

Please sign in to comment.