From 6cc67bad84176614936f2c6439d640637186764d Mon Sep 17 00:00:00 2001 From: Joel Bodenmann Date: Thu, 10 Jan 2013 19:47:50 +0100 Subject: some TDISP doxygen --- src/tdisp/tdisp.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/tdisp') 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 */ +/** @} */ -- cgit v1.2.3