diff options
author | Tectu <joel@unormal.org> | 2012-07-09 00:13:37 +0200 |
---|---|---|
committer | Tectu <joel@unormal.org> | 2012-07-09 00:13:37 +0200 |
commit | 7a20c79b15874d07d56aeb312a9bfb6baad0def3 (patch) | |
tree | d13d403591218cdbeede49add5042c247ef0cfa5 | |
parent | 57f41566b6fe4fc46171090e7928fbeb21fbda5c (diff) | |
download | uGFX-7a20c79b15874d07d56aeb312a9bfb6baad0def3.tar.gz uGFX-7a20c79b15874d07d56aeb312a9bfb6baad0def3.tar.bz2 uGFX-7a20c79b15874d07d56aeb312a9bfb6baad0def3.zip |
cleanup
-rw-r--r-- | touchpad.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -129,7 +129,7 @@ void tpCalibrate(void) { /* Abhishek: need to specify a font to use here, should probably make sure it exists somehow */ lcdDrawString(40, 10, "Touchpad Calibration", font_Larger, White, Red, solid); - for(i=0; i<2; i++) { + for(i = 0; i < 2; i++) { tpDrawCross(cross[i][0], cross[i][1]); while(!tpIRQ()); points[i][0] = tpReadRealX(); |