summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
authorKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
committerKevin Ferrare <kevin@rockbox.org>2005-11-16 15:12:15 +0000
commite991beed6df8700b41796c4c14ef786f45fb54c5 (patch)
tree63543693276236f18a91c3de87e2353625eb85dc /apps/recorder
parent76b75efa060b55bc7cbf66bae3401af57d907440 (diff)
downloadrockbox-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')
-rw-r--r--apps/recorder/radio.c6
-rw-r--r--apps/recorder/recording.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index fa0f091..1c54602 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 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();