summaryrefslogtreecommitdiff
path: root/apps/menus/recording_menu.c
diff options
context:
space:
mode:
authorAidan MacDonald <amachronic@protonmail.com>2022-04-17 17:20:43 +0100
committerAidan MacDonald <amachronic@protonmail.com>2022-04-17 17:21:02 +0100
commit1af92e5ff84bcb05d264d65d2904c4d9fe8f0d98 (patch)
tree12e17a52a8f873e7973c06f2311c7bc581a4192c /apps/menus/recording_menu.c
parentfca7b8e2ff400cfe6307f138c688cc1dcd875ce9 (diff)
downloadrockbox-1af92e5ff84bcb05d264d65d2904c4d9fe8f0d98.tar.gz
rockbox-1af92e5ff84bcb05d264d65d2904c4d9fe8f0d98.zip
Fix red from 6f5af8e53c
Change-Id: I02dbc3e91856eaef081446ca77919e6182a85e1d
Diffstat (limited to 'apps/menus/recording_menu.c')
-rw-r--r--apps/menus/recording_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c
index a870a5ee9b..c9ff975269 100644
--- a/apps/menus/recording_menu.c
+++ b/apps/menus/recording_menu.c
@@ -261,7 +261,7 @@ static int recformat_func(void)
261 }; 261 };
262 262
263 int rec_format = global_settings.rec_format; 263 int rec_format = global_settings.rec_format;
264 bool res = set_option(str(LANG_RECORDING_FORMAT), &rec_format, INT, 264 bool res = set_option(str(LANG_FORMAT), &rec_format, INT,
265 names, REC_NUM_FORMATS, NULL ); 265 names, REC_NUM_FORMATS, NULL );
266 266
267 if (rec_format != global_settings.rec_format) 267 if (rec_format != global_settings.rec_format)
@@ -272,7 +272,7 @@ static int recformat_func(void)
272 272
273 return res; 273 return res;
274} /* recformat */ 274} /* recformat */
275MENUITEM_FUNCTION(recformat, 0, ID2P(LANG_RECORDING_FORMAT), 275MENUITEM_FUNCTION(recformat, 0, ID2P(LANG_FORMAT),
276 recformat_func, NULL, NULL, Icon_Menu_setting); 276 recformat_func, NULL, NULL, Icon_Menu_setting);
277 277
278MENUITEM_FUNCTION(enc_global_config_menu_item, 0, ID2P(LANG_ENCODER_SETTINGS), 278MENUITEM_FUNCTION(enc_global_config_menu_item, 0, ID2P(LANG_ENCODER_SETTINGS),