summaryrefslogtreecommitdiff
path: root/apps/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/misc.c')
-rw-r--r--apps/misc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c
index 8004589732..f536f5c93f 100644
--- a/apps/misc.c
+++ b/apps/misc.c
@@ -880,6 +880,7 @@ int show_logo( void )
880 lcd_getstringsize((unsigned char *)"A", &font_w, &font_h); 880 lcd_getstringsize((unsigned char *)"A", &font_w, &font_h);
881 lcd_putsxy((LCD_WIDTH/2) - ((strlen(version)*font_w)/2), 881 lcd_putsxy((LCD_WIDTH/2) - ((strlen(version)*font_w)/2),
882 LCD_HEIGHT-font_h, (unsigned char *)version); 882 LCD_HEIGHT-font_h, (unsigned char *)version);
883 lcd_setfont(FONT_UI);
883 884
884#else 885#else
885 char *rockbox = " ROCKbox!"; 886 char *rockbox = " ROCKbox!";
@@ -898,7 +899,8 @@ int show_logo( void )
898 lcd_remote_setfont(FONT_SYSFIXED); 899 lcd_remote_setfont(FONT_SYSFIXED);
899 lcd_remote_getstringsize((unsigned char *)"A", &font_w, &font_h); 900 lcd_remote_getstringsize((unsigned char *)"A", &font_w, &font_h);
900 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),
901 LCD_REMOTE_HEIGHT-font_h, (unsigned char *)version); 902 LCD_REMOTE_HEIGHT-font_h, (unsigned char *)version);
903 lcd_setfont(FONT_UI);
902 lcd_remote_update(); 904 lcd_remote_update();
903#endif 905#endif
904 906