aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-01-10 14:51:31 +0100
committerJoel Bodenmann <joel@unormal.org>2013-01-10 14:51:31 +0100
commitd5e7afe756fe4c19dd9360baed23599b268709af (patch)
tree5f9532e6da0274c65b799b85e9f2ba2378f09fde /src
parent6cc67bad84176614936f2c6439d640637186764d (diff)
downloaduGFX-d5e7afe756fe4c19dd9360baed23599b268709af.tar.gz
uGFX-d5e7afe756fe4c19dd9360baed23599b268709af.tar.bz2
uGFX-d5e7afe756fe4c19dd9360baed23599b268709af.zip
4-bit mode implemented
Diffstat (limited to 'src')
-rw-r--r--src/tdisp/tdisp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tdisp/tdisp.c b/src/tdisp/tdisp.c
index fe794140..a6e5e2f5 100644
--- a/src/tdisp/tdisp.c
+++ b/src/tdisp/tdisp.c
@@ -65,12 +65,12 @@ void tdispDrawString(char *s) {
}
void tdispDrawCharLocation(coord_t col, coord_t row, char c) {
- tdispGotoXY(x, y);
+ tdispGotoXY(col, row);
tdispDrawChar(c);
}
void tdispDrawStringLocation(coord_t col, coord_t row, char *s) {
- tdispGotoXY(x, y);
+ tdispGotoXY(col, row);
tdispDrawString(s);
}