summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/radio.c8
-rw-r--r--apps/recorder/recording.c9
2 files changed, 8 insertions, 9 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index c98f0f621d..9929fba82f 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -951,11 +951,11 @@ int radio_screen(void)
951 freq / 100, freq % 100); 951 freq / 100, freq % 100);
952 FOR_NB_SCREENS(i) 952 FOR_NB_SCREENS(i)
953 screens[i].puts_scroll(0, top_of_screen + 1, buf); 953 screens[i].puts_scroll(0, top_of_screen + 1, buf);
954 954
955 snprintf(buf, 128, "%s", stereo?str(LANG_CHANNEL_STEREO):
956 str(LANG_CHANNEL_MONO));
957 FOR_NB_SCREENS(i) 955 FOR_NB_SCREENS(i)
958 screens[i].puts_scroll(0, top_of_screen + 2, buf); 956 screens[i].puts_scroll(0, top_of_screen + 2,
957 stereo ? str(LANG_CHANNEL_STEREO) :
958 str(LANG_CHANNEL_MONO));
959 959
960 snprintf(buf, 128, "%s %s", str(LANG_MODE), 960 snprintf(buf, 128, "%s %s", str(LANG_MODE),
961 radio_mode ? str(LANG_PRESET) : 961 radio_mode ? str(LANG_PRESET) :
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index b86c884c7a..ffa4b2df7e 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -965,7 +965,7 @@ static const char* reclist_get_name(int selected_item, void * data,
965 } 965 }
966 else 966 else
967 { 967 {
968 strlcpy(buffer, str(LANG_RECORDING_FILENAME), buffer_len); 968 return str(LANG_RECORDING_FILENAME);
969 } 969 }
970 break; 970 break;
971 } 971 }
@@ -1970,7 +1970,7 @@ static bool f2_rec_screen(void)
1970 } 1970 }
1971 1971
1972 while (!exit) { 1972 while (!exit) {
1973 const char* ptr=NULL; 1973 const char* ptr;
1974 1974
1975 FOR_NB_SCREENS(i) 1975 FOR_NB_SCREENS(i)
1976 { 1976 {
@@ -2090,7 +2090,7 @@ static bool f3_rec_screen(void)
2090 bool used = false; 2090 bool used = false;
2091 int w, h, i; 2091 int w, h, i;
2092 int button; 2092 int button;
2093 char *src_str[] = 2093 const char *src_str[] =
2094 { 2094 {
2095 str(LANG_SYSFONT_RECORDING_SRC_MIC), 2095 str(LANG_SYSFONT_RECORDING_SRC_MIC),
2096 str(LANG_SYSFONT_LINE_IN), 2096 str(LANG_SYSFONT_LINE_IN),
@@ -2105,8 +2105,7 @@ static bool f3_rec_screen(void)
2105 } 2105 }
2106 2106
2107 while (!exit) { 2107 while (!exit) {
2108 char* ptr=NULL; 2108 const char* ptr = src_str[global_settings.rec_source];
2109 ptr = src_str[global_settings.rec_source];
2110 FOR_NB_SCREENS(i) 2109 FOR_NB_SCREENS(i)
2111 { 2110 {
2112 screens[i].clear_display(); 2111 screens[i].clear_display();