Added some notes on draw_circle_filled

This commit is contained in:
2011-06-23 14:34:53 -04:00
parent a9bd00f37d
commit 00d2efa31f
2 changed files with 8 additions and 3 deletions

View File

@ -75,7 +75,7 @@ void GameCore::render()
{
Vertex* v = graph.get_current_vertex();
DrawUtils::draw_circle_filled(display, v->x, v->y,
MAX_MOVE_DISTANCE, 0xcb1919, 128);
MAX_MOVE_DISTANCE, 0xcb1919);
}
for (list<Vertex*>::iterator cursor = vertices.begin();