summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.c
diff options
context:
space:
mode:
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)
341 case BUTTON_PLAY: 341 case BUTTON_PLAY:
342 if(!screen_freeze) 342 if(!screen_freeze)
343 { 343 {
344 splash(0, 0, true, "Screen frozen"); 344 splash(0, true, "Screen frozen");
345 lcd_update(); 345 lcd_update();
346 screen_freeze = true; 346 screen_freeze = true;
347 } 347 }
@@ -456,7 +456,7 @@ bool radio_screen(void)
456 if(mpeg_status() & MPEG_STATUS_ERROR) 456 if(mpeg_status() & MPEG_STATUS_ERROR)
457 { 457 {
458 status_set_playmode(STATUS_STOP); 458 status_set_playmode(STATUS_STOP);
459 splash(0, 0, true, str(LANG_DISK_FULL)); 459 splash(0, true, str(LANG_DISK_FULL));
460 status_draw(true); 460 status_draw(true);
461 lcd_update(); 461 lcd_update();
462 mpeg_error_clear(); 462 mpeg_error_clear();
@@ -531,7 +531,7 @@ void radio_save_presets(void)
531 } 531 }
532 else 532 else
533 { 533 {
534 splash(HZ*2, 0, true, str(LANG_FM_PRESET_SAVE_FAILED)); 534 splash(HZ*2, true, str(LANG_FM_PRESET_SAVE_FAILED));
535 } 535 }
536} 536}
537 537
@@ -621,7 +621,7 @@ bool radio_preset_select(void)
621 } 621 }
622 else 622 else
623 { 623 {
624 splash(HZ*2, 0, true, str(LANG_FM_NO_PRESETS)); 624 splash(HZ*2, true, str(LANG_FM_NO_PRESETS));
625 } 625 }
626 } 626 }
627 627
@@ -647,7 +647,7 @@ static bool radio_add_preset(void)
647 } 647 }
648 else 648 else
649 { 649 {
650 splash(HZ*2, 0, true, str(LANG_FM_NO_FREE_PRESETS)); 650 splash(HZ*2, true, str(LANG_FM_NO_FREE_PRESETS));
651 } 651 }
652 return true; 652 return true;
653} 653}