summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-remote-1bit-v.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd-remote-1bit-v.c')
-rw-r--r--firmware/drivers/lcd-remote-1bit-v.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-remote-1bit-v.c b/firmware/drivers/lcd-remote-1bit-v.c
index a33648b76a..20c6f6655c 100644
--- a/firmware/drivers/lcd-remote-1bit-v.c
+++ b/firmware/drivers/lcd-remote-1bit-v.c
@@ -117,6 +117,11 @@ void lcd_remote_setfont(int newfont)
117 current_vp->font = newfont; 117 current_vp->font = newfont;
118} 118}
119 119
120int lcd_remote_getfont(void)
121{
122 return current_vp->font;
123}
124
120int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h) 125int lcd_remote_getstringsize(const unsigned char *str, int *w, int *h)
121{ 126{
122 return font_getstringsize(str, w, h, current_vp->font); 127 return font_getstringsize(str, w, h, current_vp->font);