diff options
| author | Kjell Ericson <kjell@haxx.se> | 2002-10-28 19:52:22 +0000 |
|---|---|---|
| committer | Kjell Ericson <kjell@haxx.se> | 2002-10-28 19:52:22 +0000 |
| commit | fd9f864de22af0d792a4b74186d545e2e8097f6a (patch) | |
| tree | eb8fc38fa8777e5d170bd2e97f1122d25f5b659e /apps | |
| parent | 18a7c78d60b0f0bc9da23a029c173aab80357e2d (diff) | |
| download | rockbox-fd9f864de22af0d792a4b74186d545e2e8097f6a.zip rockbox-fd9f864de22af0d792a4b74186d545e2e8097f6a.tar.gz rockbox-fd9f864de22af0d792a4b74186d545e2e8097f6a.tar.bz2 rockbox-fd9f864de22af0d792a4b74186d545e2e8097f6a.tar.xz | |
The player simulator now has it own font_init()-function. We shall therefor call it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2758 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/main.c b/apps/main.c index 8c6d20d..30d5f08 100644 --- a/apps/main.c +++ b/apps/main.c @@ -65,9 +65,7 @@ void init(void) { init_threads(); lcd_init(); -#ifndef HAVE_LCD_CHARCELLS - font_init(); -#endif + font_init(); show_logo(); settings_reset(); settings_load(); |