aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-01-10 19:47:50 +0100
committerJoel Bodenmann <joel@unormal.org>2013-01-10 19:47:50 +0100
commit6cc67bad84176614936f2c6439d640637186764d (patch)
tree9e510ac2b26ab6dc4feddc848cca298dca19bfae /src
parenta2a87ddd458ef0811dfb71510d7027d23038005b (diff)
downloaduGFX-6cc67bad84176614936f2c6439d640637186764d.tar.gz
uGFX-6cc67bad84176614936f2c6439d640637186764d.tar.bz2
uGFX-6cc67bad84176614936f2c6439d640637186764d.zip
some TDISP doxygen
Diffstat (limited to 'src')
-rw-r--r--src/tdisp/tdisp.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/tdisp/tdisp.c b/src/tdisp/tdisp.c
index 73db93a1..fe794140 100644
--- a/src/tdisp/tdisp.c
+++ b/src/tdisp/tdisp.c
@@ -64,15 +64,16 @@ void tdispDrawString(char *s) {
tdispDrawChar(c);
}
-void tdispDrawCharLocation(coord_t x, coord_t y, char c) {
+void tdispDrawCharLocation(coord_t col, coord_t row, char c) {
tdispGotoXY(x, y);
tdispDrawChar(c);
}
-void tdispDrawStringLocation(coord_t x, coord_t y, char *s) {
+void tdispDrawStringLocation(coord_t col, coord_t row, char *s) {
tdispGotoXY(x, y);
tdispDrawString(s);
}
#endif /* GFX_USE_TDISP */
+/** @} */