diff options
| author | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:22:22 +0000 |
|---|---|---|
| committer | Kjell Ericson <kjell@haxx.se> | 2002-10-21 20:22:22 +0000 |
| commit | e12e55e53af45f016f9f57dfa22989a35126cc01 (patch) | |
| tree | 7b9b7265508c3d9dc832a39e04e5ab40024f52f7 | |
| parent | a52896878a46d362526f0f7f296ca75ef3bf60cb (diff) | |
| download | rockbox-e12e55e53af45f016f9f57dfa22989a35126cc01.zip rockbox-e12e55e53af45f016f9f57dfa22989a35126cc01.tar.gz rockbox-e12e55e53af45f016f9f57dfa22989a35126cc01.tar.bz2 rockbox-e12e55e53af45f016f9f57dfa22989a35126cc01.tar.xz | |
Fonts are only for recorder.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2737 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/main.c b/apps/main.c index 30d5f08..8c6d20d 100644 --- a/apps/main.c +++ b/apps/main.c @@ -65,7 +65,9 @@ void init(void) { init_threads(); lcd_init(); - font_init(); +#ifndef HAVE_LCD_CHARCELLS + font_init(); +#endif show_logo(); settings_reset(); settings_load(); |