router: removed some printfs()

This commit is contained in:
Tomasz Włostowski 2015-03-03 10:36:44 +01:00
parent fe40567426
commit 385d3648d6
2 changed files with 0 additions and 7 deletions

View File

@ -139,14 +139,9 @@ static void drawGw( VECTOR2I p, int color )
l.Append( p - VECTOR2I( -50000, -50000 ) );
l.Append( p + VECTOR2I( -50000, -50000 ) );
//printf("router @ %p\n", PNS_ROUTER::GetInstance());
// PNS_ROUTER::GetInstance()->DisplayDebugLine ( l, color, 10000 );
l.Clear();
l.Append( p - VECTOR2I( 50000, -50000 ) );
l.Append( p + VECTOR2I( 50000, -50000 ) );
// PNS_ROUTER::GetInstance()->DisplayDebugLine ( l, color, 10000 );
}

View File

@ -101,7 +101,6 @@ void DrawDebugPoint( VECTOR2I aP, int aColor )
l.Append( aP - VECTOR2I( -50000, -50000 ) );
l.Append( aP + VECTOR2I( -50000, -50000 ) );
//printf("router @ %p\n", PNS_ROUTER::GetInstance());
PNS_ROUTER::GetInstance()->DisplayDebugLine ( l, aColor, 10000 );
l.Clear();
@ -125,7 +124,6 @@ void DrawDebugBox( BOX2I aB, int aColor )
l.Append( o.x, o.y + s.y );
l.Append( o );
//printf("router @ %p\n", PNS_ROUTER::GetInstance());
PNS_ROUTER::GetInstance()->DisplayDebugLine( l, aColor, 10000 );
}