summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/drivers/lcd.c')
-rw-r--r--firmware/drivers/lcd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/drivers/lcd.c b/firmware/drivers/lcd.c
index 352de748fd..46642bcc5c 100644
--- a/firmware/drivers/lcd.c
+++ b/firmware/drivers/lcd.c
@@ -495,7 +495,7 @@ extern unsigned char char_dw_8x8_prop[][9];
495/* 495/*
496 * Return width and height of a given font. 496 * Return width and height of a given font.
497 */ 497 */
498int lcd_getstringsize(char *str, unsigned int font, int *w, int *h) 498int lcd_getstringsize(unsigned char *str, unsigned int font, int *w, int *h)
499{ 499{
500 int width=0; 500 int width=0;
501 int height=0; 501 int height=0;
@@ -563,7 +563,7 @@ void lcd_putspropxy(int x, int y, unsigned char *str, int thisfont)
563/* 563/*
564 * Put a string at specified character position 564 * Put a string at specified character position
565 */ 565 */
566void lcd_puts(int x, int y, char *str) 566void lcd_puts(int x, int y, unsigned char *str)
567{ 567{
568#if defined(SIMULATOR) && defined(HAVE_LCD_CHARCELLS) 568#if defined(SIMULATOR) && defined(HAVE_LCD_CHARCELLS)
569 /* We make the simulator truncate the string if it reaches the right edge, 569 /* We make the simulator truncate the string if it reaches the right edge,
@@ -600,7 +600,7 @@ void lcd_puts(int x, int y, char *str)
600 * Put a string at specified bit position 600 * Put a string at specified bit position
601 */ 601 */
602 602
603void lcd_putsxy(int x, int y, char *str, int thisfont) 603void lcd_putsxy(int x, int y, unsigned char *str, int thisfont)
604{ 604{
605 int nx = fonts[thisfont]; 605 int nx = fonts[thisfont];
606 int ny = fontheight[thisfont]; 606 int ny = fontheight[thisfont];
@@ -911,7 +911,7 @@ void lcd_getfontsize(unsigned int font, int *width, int *height)
911/* no LCD defined, no code to use */ 911/* no LCD defined, no code to use */
912#endif 912#endif
913 913
914void lcd_puts_scroll(int x, int y, char* string ) 914void lcd_puts_scroll(int x, int y, unsigned char* string )
915{ 915{
916 struct scrollinfo* s = &scroll; 916 struct scrollinfo* s = &scroll;
917#ifdef HAVE_LCD_CHARCELLS 917#ifdef HAVE_LCD_CHARCELLS