Fix code formatting

Was indented two spaces, needed to be four.
This commit is contained in:
Andy McFadden 2017-10-21 16:16:07 -07:00
parent 9193ea7f36
commit c813bc0acd

View File

@ -538,7 +538,7 @@ fast.
Circles are computed with Bresenham's algorithm. The idea is to compute
one octant of the circle with this bit of magic:
void drawOutline(int cx, int cy, int rad) {
void drawOutline(int cx, int cy, int rad) {
int x, y, d;
d = 1 - rad;
@ -556,7 +556,7 @@ void drawOutline(int cx, int cy, int rad) {
}
x++;
}
}
}
Then each X/Y coordinate is plotted eight times: