diff options
| author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
|---|---|---|
| committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-16 15:12:15 +0000 |
| commit | e991beed6df8700b41796c4c14ef786f45fb54c5 (patch) | |
| tree | 63543693276236f18a91c3de87e2353625eb85dc /apps/misc.c | |
| parent | 76b75efa060b55bc7cbf66bae3401af57d907440 (diff) | |
| download | rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.bz2 rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.xz | |
replaced all the splash calls by gui_sync_splash, added some missing remote key in the playlist viewer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7909 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
| -rw-r--r-- | apps/misc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c index a91a1a2..986a52c 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -43,6 +43,7 @@ #include "atoi.h" #include "version.h" #include "font.h" +#include "splash.h" #ifdef HAVE_MMC #include "ata_mmc.h" #endif @@ -442,7 +443,7 @@ static bool clean_shutdown(void (*callback)(void *), void *parameter) #endif { lcd_clear_display(); - splash(0, true, str(LANG_SHUTTINGDOWN)); + gui_syncsplash(0, true, str(LANG_SHUTTINGDOWN)); if (callback != NULL) callback(parameter); |