summaryrefslogtreecommitdiffstats
path: root/apps/recorder/radio.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-01-08 12:00:04 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-01-08 12:00:04 +0000
commit0582b91872f75b4741f20dbe1137dd06dafc812e (patch)
tree2f7fe80767073066c1c40406ec39a9becd6de304 /apps/recorder/radio.c
parentcd8847b883f13909c9ffb888cc842de932627539 (diff)
downloadrockbox-0582b91872f75b4741f20dbe1137dd06dafc812e.tar.gz
rockbox-0582b91872f75b4741f20dbe1137dd06dafc812e.zip
use the new splash() api
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4203 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/radio.c')
-rw-r--r--apps/recorder/radio.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index 689831fa39..0cc85335b0 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -341,7 +341,7 @@ bool radio_screen(void)
case BUTTON_PLAY:
if(!screen_freeze)
{
- splash(0, 0, true, "Screen frozen");
+ splash(0, true, "Screen frozen");
lcd_update();
screen_freeze = true;
}
@@ -456,7 +456,7 @@ bool radio_screen(void)
if(mpeg_status() & MPEG_STATUS_ERROR)
{
status_set_playmode(STATUS_STOP);
- splash(0, 0, true, str(LANG_DISK_FULL));
+ splash(0, true, str(LANG_DISK_FULL));
status_draw(true);
lcd_update();
mpeg_error_clear();
@@ -531,7 +531,7 @@ void radio_save_presets(void)
}
else
{
- splash(HZ*2, 0, true, str(LANG_FM_PRESET_SAVE_FAILED));
+ splash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED));
}
}
@@ -621,7 +621,7 @@ bool radio_preset_select(void)
}
else
{
- splash(HZ*2, 0, true, str(LANG_FM_NO_PRESETS));
+ splash(HZ*2, true, str(LANG_FM_NO_PRESETS));
}
}
@@ -647,7 +647,7 @@ static bool radio_add_preset(void)
}
else
{
- splash(HZ*2, 0, true, str(LANG_FM_NO_FREE_PRESETS));
+ splash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS));
}
return true;
}