1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a few compiler warnings.

This commit is contained in:
jules 2013-11-01 10:43:30 +00:00
parent aeb8826889
commit 2c9c35d3c3
7 changed files with 10 additions and 11 deletions

View file

@ -87,9 +87,9 @@ void Box2DRenderer::DrawCircle (const b2Vec2& center, float32 radius, const b2Co
getLineThickness());
}
void Box2DRenderer::DrawSolidCircle (const b2Vec2& center, float32 radius, const b2Vec2& axis, const b2Color& color)
void Box2DRenderer::DrawSolidCircle (const b2Vec2& center, float32 radius, const b2Vec2& /*axis*/, const b2Color& colour)
{
graphics->setColour (getColour (color));
graphics->setColour (getColour (colour));
graphics->fillEllipse (center.x - radius, center.y - radius,
radius * 2.0f, radius * 2.0f);
}