whitespaces

ugfx_release_2.6
Tectu 2012-06-24 18:28:57 +02:00
parent ed70b3acc4
commit e543f15633
1 changed files with 5 additions and 5 deletions

10
glcd.c
View File

@ -394,10 +394,10 @@ void lcdDrawCircle(uint16_t x, uint16_t y, uint16_t radius, uint8_t filled, uint
lcdDrawPixel(x-b, y-a, color); lcdDrawPixel(x-b, y-a, color);
} }
if(P < 0) if(P < 0)
P += 3 + 2*a++; P += 3 + 2*a++;
else else
P += 5 + 2*(a++ - b--); P += 5 + 2*(a++ - b--);
} while(a <= b); } while(a <= b);
} }