aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 */
+/** @} */