summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index a80a0df2fc..ffde856612 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -538,7 +538,7 @@ int rec_create_directory(void)
538 rc = mkdir(rec_base_directory); 538 rc = mkdir(rec_base_directory);
539 if(rc < 0 && errno != EEXIST) 539 if(rc < 0 && errno != EEXIST)
540 { 540 {
541 gui_syncsplash(HZ * 2, true, 541 gui_syncsplash(HZ * 2,
542 "Can't create the %s directory. Error code %d.", 542 "Can't create the %s directory. Error code %d.",
543 rec_base_directory, rc); 543 rec_base_directory, rc);
544 return -1; 544 return -1;
@@ -870,7 +870,7 @@ bool recording_screen(bool no_source)
870 screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1, 870 screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1,
871 screens[1].height/(h*2) + 1, buf); 871 screens[1].height/(h*2) + 1, buf);
872 screens[1].update(); 872 screens[1].update();
873 gui_syncsplash(0, true, str(LANG_REMOTE_LCD_OFF)); 873 gui_syncsplash(0, str(LANG_REMOTE_LCD_OFF));
874 } 874 }
875#endif 875#endif
876 876
@@ -958,7 +958,7 @@ bool recording_screen(bool no_source)
958 screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1, 958 screens[1].puts((screens[1].width/w - strlen(buf))/2 + 1,
959 screens[1].height/(h*2) + 1, buf); 959 screens[1].height/(h*2) + 1, buf);
960 screens[1].update(); 960 screens[1].update();
961 gui_syncsplash(0, true, str(LANG_REMOTE_LCD_OFF)); 961 gui_syncsplash(0, str(LANG_REMOTE_LCD_OFF));
962 } 962 }
963 else 963 else
964 { 964 {
@@ -1741,7 +1741,7 @@ bool recording_screen(bool no_source)
1741 audio_stat = audio_status(); 1741 audio_stat = audio_status();
1742 if (audio_stat & AUDIO_STATUS_ERROR) 1742 if (audio_stat & AUDIO_STATUS_ERROR)
1743 { 1743 {
1744 gui_syncsplash(0, true, str(LANG_SYSFONT_DISK_FULL)); 1744 gui_syncsplash(0, str(LANG_SYSFONT_DISK_FULL));
1745 gui_syncstatusbar_draw(&statusbars, true); 1745 gui_syncstatusbar_draw(&statusbars, true);
1746 1746
1747 FOR_NB_SCREENS(i) 1747 FOR_NB_SCREENS(i)