From 36dfdedf3becfb3e81e2e549fc32feb1c8748c73 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sun, 28 Dec 2008 22:26:41 +0000 Subject: [PATCH] Make sure pictureflow always uses the user font, both on colour and greyscale targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19610 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/pictureflow.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/plugins/pictureflow.c b/apps/plugins/pictureflow.c index 258e1faaec..83ab1ddef0 100644 --- a/apps/plugins/pictureflow.c +++ b/apps/plugins/pictureflow.c @@ -1896,6 +1896,8 @@ void draw_album_text(void) int main(void) { int ret; + + rb->lcd_setfont(FONT_UI); draw_splashscreen(); if ( ! rb->dir_exists( CACHE_PREFIX ) ) { @@ -1951,6 +1953,7 @@ int main(void) if (!grey_init(rb, plugin_buf, plugin_buf_size, GREY_BUFFERED|GREY_ON_COP, LCD_WIDTH, LCD_HEIGHT, NULL)) rb->splash(HZ, "Greylib init failed!"); + grey_setfont(FONT_UI); #endif buffer = LCD_BUF;