aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTectu <joel@unormal.org>2012-06-24 18:28:57 +0200
committerTectu <joel@unormal.org>2012-06-24 18:28:57 +0200
commite543f15633db2fc915245c5ede020c30e633c1a4 (patch)
tree324320cfd03bfb4014691043a8283bca654a6fdc
parented70b3acc48e16f9c7640ef95152ea6037901e8e (diff)
downloaduGFX-e543f15633db2fc915245c5ede020c30e633c1a4.tar.gz
uGFX-e543f15633db2fc915245c5ede020c30e633c1a4.tar.bz2
uGFX-e543f15633db2fc915245c5ede020c30e633c1a4.zip
whitespaces
-rw-r--r--glcd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/glcd.c b/glcd.c
index b00fa698..01e166a8 100644
--- a/glcd.c
+++ b/glcd.c
@@ -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);
}
- if(P < 0)
- P += 3 + 2*a++;
- else
- P += 5 + 2*(a++ - b--);
- } while(a <= b);
+ if(P < 0)
+ P += 3 + 2*a++;
+ else
+ P += 5 + 2*(a++ - b--);
+ } while(a <= b);
}