mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 21:22:39 -05:00
unstatic the string buffer, fix the recording setting lang, change the
menu title... aparently im the only one who thinks it should match the logo... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12233 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
217ad16850
commit
9bb864b82a
3 changed files with 3 additions and 3 deletions
|
|
@ -643,7 +643,7 @@ int do_menu(const struct menu_item_ex *start_menu)
|
||||||
else if (setting->flags&F_CHOICE_SETTING)
|
else if (setting->flags&F_CHOICE_SETTING)
|
||||||
{
|
{
|
||||||
static struct opt_items options[MAX_OPTIONS];
|
static struct opt_items options[MAX_OPTIONS];
|
||||||
static char buffer[256];
|
char buffer[256];
|
||||||
char *buf_start = buffer;
|
char *buf_start = buffer;
|
||||||
int buf_free = 256;
|
int buf_free = 256;
|
||||||
int i,j, count = setting->choice_setting->count;
|
int i,j, count = setting->choice_setting->count;
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@ MENUITEM_FUNCTION(do_shutdown_item, ID2P(LANG_SHUTDOWN), do_shutdown, NULL);
|
||||||
|
|
||||||
/* NOTE: This title will be translatable once we decide what to call this menu
|
/* NOTE: This title will be translatable once we decide what to call this menu
|
||||||
when the root menu comes in... hopefully in the next few days */
|
when the root menu comes in... hopefully in the next few days */
|
||||||
MAKE_MENU(main_menu_, "ROCKbox Main Menu", NULL,
|
MAKE_MENU(main_menu_, "Rockbox Main Menu", NULL,
|
||||||
&mrb_bookmarks, &sound_settings,
|
&mrb_bookmarks, &sound_settings,
|
||||||
&settings_menu_item, &manage_settings_menu_item, &browse_themes,
|
&settings_menu_item, &manage_settings_menu_item, &browse_themes,
|
||||||
#ifdef CONFIG_TUNER
|
#ifdef CONFIG_TUNER
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ MENUITEM_FUNCTION(rec_menu_recording_screen_item, ID2P(LANG_RECORDING_MENU),
|
||||||
(menu_function)recording_screen, NULL);
|
(menu_function)recording_screen, NULL);
|
||||||
/* TEMP */
|
/* TEMP */
|
||||||
bool recording_menu(bool no_source); /* from apps/sound_menu.h */
|
bool recording_menu(bool no_source); /* from apps/sound_menu.h */
|
||||||
MENUITEM_FUNCTION_WPARAM(recording_settings, ID2P(LANG_RECORDING_MENU),
|
MENUITEM_FUNCTION_WPARAM(recording_settings, ID2P(LANG_RECORDING_SETTINGS),
|
||||||
(int (*)(void*))recording_menu,0, NULL);
|
(int (*)(void*))recording_menu,0, NULL);
|
||||||
|
|
||||||
MAKE_MENU(recording_settings_menu,ID2P(LANG_RECORDING),0,
|
MAKE_MENU(recording_settings_menu,ID2P(LANG_RECORDING),0,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue