From e991beed6df8700b41796c4c14ef786f45fb54c5 Mon Sep 17 00:00:00 2001 From: Kevin Ferrare Date: Wed, 16 Nov 2005 15:12:15 +0000 Subject: 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 --- apps/recorder/radio.c | 6 +++--- apps/recorder/recording.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/recorder') diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index fa0f091156..1c54602e73 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -814,7 +814,7 @@ bool radio_screen(void) #ifndef SIMULATOR if(audio_status() & AUDIO_STATUS_ERROR) { - splash(0, true, str(LANG_DISK_FULL)); + gui_syncsplash(0, true, str(LANG_DISK_FULL)); gui_syncstatusbar_draw(&statusbars,true); FOR_NB_SCREENS(i) gui_textarea_update(&screens[i]); @@ -878,7 +878,7 @@ void radio_save_presets(void) } else { - splash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED)); + gui_syncsplash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED)); } } @@ -959,7 +959,7 @@ bool radio_add_preset(void) } else { - splash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS)); + gui_syncsplash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS)); } return true; } diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 62b5dff489..eda56a5bf9 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(); -- cgit v1.2.3