Fix presumed typo in collision reporting.
(The format string contains two %d items, but is only passed a single int.)
This commit is contained in:
parent
ac7ceb03ee
commit
aeb8374ae5
|
@ -199,7 +199,7 @@ int playground_main_func( int argc, char* argv[] )
|
||||||
overlay->Line( closestDist.A, closestDist.B );
|
overlay->Line( closestDist.A, closestDist.B );
|
||||||
overlay->SetLineWidth( 10000 );
|
overlay->SetLineWidth( 10000 );
|
||||||
overlay->SetGlyphSize( { 100000, 100000 } );
|
overlay->SetGlyphSize( { 100000, 100000 } );
|
||||||
overlay->BitmapText( wxString::Format( "dist=%d, l=%d", closestDist.Length() ),
|
overlay->BitmapText( wxString::Format( "dist=%d", closestDist.Length() ),
|
||||||
closestDist.A + VECTOR2I( 0, -arcs[i].GetWidth() ),
|
closestDist.A + VECTOR2I( 0, -arcs[i].GetWidth() ),
|
||||||
ANGLE_HORIZONTAL );
|
ANGLE_HORIZONTAL );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue