summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.c
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/radio.c
parent76b75efa060b55bc7cbf66bae3401af57d907440 (diff)
downloadrockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.tar.gz
rockbox-e991beed6df8700b41796c4c14ef786f45fb54c5.zip
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/radio.c')
-rw-r--r--apps/recorder/radio.c6
1 files changed, 3 insertions, 3 deletions
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)
814#ifndef SIMULATOR 814#ifndef SIMULATOR
815 if(audio_status() & AUDIO_STATUS_ERROR) 815 if(audio_status() & AUDIO_STATUS_ERROR)
816 { 816 {
817 splash(0, true, str(LANG_DISK_FULL)); 817 gui_syncsplash(0, true, str(LANG_DISK_FULL));
818 gui_syncstatusbar_draw(&statusbars,true); 818 gui_syncstatusbar_draw(&statusbars,true);
819 FOR_NB_SCREENS(i) 819 FOR_NB_SCREENS(i)
820 gui_textarea_update(&screens[i]); 820 gui_textarea_update(&screens[i]);
@@ -878,7 +878,7 @@ void radio_save_presets(void)
878 } 878 }
879 else 879 else
880 { 880 {
881 splash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED)); 881 gui_syncsplash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED));
882 } 882 }
883} 883}
884 884
@@ -959,7 +959,7 @@ bool radio_add_preset(void)
959 } 959 }
960 else 960 else
961 { 961 {
962 splash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS)); 962 gui_syncsplash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS));
963 } 963 }
964 return true; 964 return true;
965} 965}