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/recorder/recording.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/recorder/recording.c')
| -rw-r--r-- | apps/recorder/recording.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 62b5dff..eda56a5 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -59,7 +59,7 @@ #include "atoi.h" #include "sound.h" #include "ata.h" - +#include "splash.h" #ifdef HAVE_RECORDING @@ -228,7 +228,7 @@ int rec_create_directory(void) rc = mkdir(rec_base_directory, 0); if(rc < 0 && errno != EEXIST) { - splash(HZ * 2, true, + gui_syncsplash(HZ * 2, true, "Can't create the %s directory. Error code %d.", rec_base_directory, rc); return -1; @@ -859,7 +859,7 @@ bool recording_screen(void) #endif if (audio_stat & AUDIO_STATUS_ERROR) { - splash(0, true, str(LANG_DISK_FULL)); + gui_syncsplash(0, true, str(LANG_DISK_FULL)); status_draw(true); lcd_update(); audio_error_clear(); |