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.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 8bcc3ee9af..68528c71c0 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -1529,7 +1529,7 @@ bool recording_screen(bool no_source)
1529 if(global_settings.rec_source == AUDIO_SRC_MIC) 1529 if(global_settings.rec_source == AUDIO_SRC_MIC)
1530 { 1530 {
1531 /* Draw MIC recording gain */ 1531 /* Draw MIC recording gain */
1532 snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_RECORDING_GAIN), 1532 snprintf(buf, sizeof(buf), "%s:%s", str(LANG_SYSFONT_GAIN),
1533 fmt_gain(SOUND_MIC_GAIN, 1533 fmt_gain(SOUND_MIC_GAIN,
1534 global_settings.rec_mic_gain, 1534 global_settings.rec_mic_gain,
1535 buf2, sizeof(buf2))); 1535 buf2, sizeof(buf2)));
@@ -1921,12 +1921,12 @@ static bool f2_rec_screen(void)
1921 1921
1922 FOR_NB_SCREENS(i) 1922 FOR_NB_SCREENS(i)
1923 { 1923 {
1924 screens[i].getstringsize(str(LANG_SYSFONT_RECORDING_CHANNELS), &w, &h); 1924 screens[i].getstringsize(str(LANG_SYSFONT_CHANNELS), &w, &h);
1925 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2, 1925 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h*2,
1926 str(LANG_SYSFONT_RECORDING_CHANNELS)); 1926 str(LANG_SYSFONT_CHANNELS));
1927 screens[i].getstringsize(str(LANG_SYSFONT_F2_MODE), &w, &h); 1927 screens[i].getstringsize(str(LANG_SYSFONT_MODE), &w, &h);
1928 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h, 1928 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2 - h,
1929 str(LANG_SYSFONT_F2_MODE)); 1929 str(LANG_SYSFONT_MODE));
1930 screens[i].getstringsize(ptr, &w, &h); 1930 screens[i].getstringsize(ptr, &w, &h);
1931 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr); 1931 screens[i].putsxy(LCD_WIDTH - w, LCD_HEIGHT/2, ptr);
1932 screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward], 1932 screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastForward],
@@ -1999,7 +1999,7 @@ static bool f3_rec_screen(void)
1999 char *src_str[] = 1999 char *src_str[] =
2000 { 2000 {
2001 str(LANG_SYSFONT_RECORDING_SRC_MIC), 2001 str(LANG_SYSFONT_RECORDING_SRC_MIC),
2002 str(LANG_SYSFONT_RECORDING_SRC_LINE), 2002 str(LANG_SYSFONT_LINE_IN),
2003 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL) 2003 str(LANG_SYSFONT_RECORDING_SRC_DIGITAL)
2004 }; 2004 };
2005 struct audio_recording_options rec_options; 2005 struct audio_recording_options rec_options;