summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2007-04-12 13:36:49 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2007-04-12 13:36:49 +0000
commit88c05bd3c1fc32a90bc092a9843311a262ad1334 (patch)
tree2c888ad266f7fd3813561f33fa87e537517401e0
parentc9397742691b2920538fe600d1eb8ca154a4d448 (diff)
downloadrockbox-88c05bd3c1fc32a90bc092a9843311a262ad1334.tar.gz
rockbox-88c05bd3c1fc32a90bc092a9843311a262ad1334.zip
fix typo in the last commit: lcd_setfont -> lcd_remote_setfont
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13125 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index f536f5c93f..3010104cd3 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -900,7 +900,7 @@ int show_logo( void )
900 lcd_remote_getstringsize((unsigned char *)"A", &font_w, &font_h); 900 lcd_remote_getstringsize((unsigned char *)"A", &font_w, &font_h);
901 lcd_remote_putsxy((LCD_REMOTE_WIDTH/2) - ((strlen(version)*font_w)/2), 901 lcd_remote_putsxy((LCD_REMOTE_WIDTH/2) - ((strlen(version)*font_w)/2),
902 LCD_REMOTE_HEIGHT-font_h, (unsigned char *)version); 902 LCD_REMOTE_HEIGHT-font_h, (unsigned char *)version);
903 lcd_setfont(FONT_UI); 903 lcd_remote_setfont(FONT_UI);
904 lcd_remote_update(); 904 lcd_remote_update();
905#endif 905#endif
906 906