aboutsummaryrefslogtreecommitdiffstats
path: root/touchpad.c
diff options
context:
space:
mode:
authorKumar Abhishek <abhishek@kumar>2012-06-13 19:14:38 +0530
committerKumar Abhishek <abhishek@kumar>2012-06-13 19:14:38 +0530
commit2f157e29de212b0b21523cf5338369e51782870a (patch)
tree59d9b088a887b413c39bed77876e30cdcf6fe42c /touchpad.c
parentbd573fbef19fd1a9e28c95e248d1279ad706ae75 (diff)
downloaduGFX-2f157e29de212b0b21523cf5338369e51782870a.tar.gz
uGFX-2f157e29de212b0b21523cf5338369e51782870a.tar.bz2
uGFX-2f157e29de212b0b21523cf5338369e51782870a.zip
Restored prev implementation of lcdDrawString()
Support for transparent/non-transparent text rendering via lcdEnableTransparentText(). It is disabled by default.
Diffstat (limited to 'touchpad.c')
-rw-r--r--touchpad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/touchpad.c b/touchpad.c
index d98961d2..a419a3c9 100644
--- a/touchpad.c
+++ b/touchpad.c
@@ -123,7 +123,7 @@ void tpCalibrate(void) {
lcdSetOrientation(portrait);
lcdClear(Red);
cx=40; cy=10;
- lcdDrawString("Touchpad Calibration");
+ lcdDrawString(40, 10, "Touchpad Calibration", White, Red);
for(i=0; i<2; i++) {
tpDrawCross(cross[i][0], cross[i][1]);