diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 08:24:33 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-06-11 08:24:33 +0000 |
| commit | 75e09a80db82410d6000a834cfcbec618775d781 (patch) | |
| tree | 4a98b16d40559af74ed42316572cdbe9a6ee8a02 | |
| parent | 92e46622e5f26f86216b3fd3b023b63a6a886ef2 (diff) | |
| download | rockbox-75e09a80db82410d6000a834cfcbec618775d781.zip rockbox-75e09a80db82410d6000a834cfcbec618775d781.tar.gz rockbox-75e09a80db82410d6000a834cfcbec618775d781.tar.bz2 rockbox-75e09a80db82410d6000a834cfcbec618775d781.tar.xz | |
now that show_logo() doesn't mess with the disk we call it as early as
possible before most initing but after the LCD init
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@950 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/main.c b/apps/main.c index 93353e5..e25a99b 100644 --- a/apps/main.c +++ b/apps/main.c @@ -75,6 +75,8 @@ int init(void) bmalloc_add_pool(poolstart, poolend-poolstart); lcd_init(); + show_logo(); + #ifdef DEBUG debug_init(); #endif @@ -95,8 +97,6 @@ int init(void) button_init(); mpeg_init(); - show_logo(); - return 0; } |