pr indent fixup

This commit is contained in:
Adam D. Ruppe 2019-07-09 08:50:22 -04:00
parent 6b3ebe868e
commit 1268d3bf42
1 changed files with 5 additions and 6 deletions

View File

@ -6606,8 +6606,7 @@ struct ScreenPainter {
//this function draws a circle using the drawArc() function above, it requires you to pass the point it
//will be drawn at as a Point struct and the radius as an int
void drawCircle(Point upperLeft, int radius)
{
void drawCircle(Point upperLeft, int radius) {
this.drawArc(upperLeft, radius, radius, 0, 0);
}