forked from len0rd/rockbox
more green seen as everyone has a green fetish atm
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16223 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7ca3ccd2a4
commit
2b6d35854d
2 changed files with 5 additions and 1 deletions
|
|
@ -727,10 +727,12 @@ struct user_settings
|
||||||
#endif
|
#endif
|
||||||
unsigned char playlist_catalog_dir[MAX_FILENAME+1];
|
unsigned char playlist_catalog_dir[MAX_FILENAME+1];
|
||||||
|
|
||||||
|
#ifdef HAVE_QUICKSCREEN
|
||||||
unsigned char quickscreen_left[MAX_FILENAME+1];
|
unsigned char quickscreen_left[MAX_FILENAME+1];
|
||||||
unsigned char quickscreen_right[MAX_FILENAME+1];
|
unsigned char quickscreen_right[MAX_FILENAME+1];
|
||||||
unsigned char quickscreen_top[MAX_FILENAME+1];
|
unsigned char quickscreen_top[MAX_FILENAME+1];
|
||||||
unsigned char quickscreen_bottom[MAX_FILENAME+1];
|
unsigned char quickscreen_bottom[MAX_FILENAME+1];
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
/** global variables **/
|
/** global variables **/
|
||||||
|
|
|
||||||
|
|
@ -1189,6 +1189,7 @@ const struct settings_list settings[] = {
|
||||||
#endif /* CONFIG_CODEC == SWCODEC */
|
#endif /* CONFIG_CODEC == SWCODEC */
|
||||||
FILENAME_SETTING(0, playlist_catalog_dir, "playlist catalog directory",
|
FILENAME_SETTING(0, playlist_catalog_dir, "playlist catalog directory",
|
||||||
PLAYLIST_CATALOG_DEFAULT_DIR, NULL, NULL, MAX_FILENAME+1),
|
PLAYLIST_CATALOG_DEFAULT_DIR, NULL, NULL, MAX_FILENAME+1),
|
||||||
|
#ifdef HAVE_QUICKSCREEN
|
||||||
FILENAME_SETTING(0, quickscreen_left, "quickscreen left",
|
FILENAME_SETTING(0, quickscreen_left, "quickscreen left",
|
||||||
"shuffle", NULL, NULL, MAX_FILENAME+1),
|
"shuffle", NULL, NULL, MAX_FILENAME+1),
|
||||||
FILENAME_SETTING(0, quickscreen_right, "quickscreen right",
|
FILENAME_SETTING(0, quickscreen_right, "quickscreen right",
|
||||||
|
|
@ -1196,7 +1197,8 @@ const struct settings_list settings[] = {
|
||||||
FILENAME_SETTING(0, quickscreen_top, "quickscreen top",
|
FILENAME_SETTING(0, quickscreen_top, "quickscreen top",
|
||||||
"", NULL, NULL, MAX_FILENAME+1),
|
"", NULL, NULL, MAX_FILENAME+1),
|
||||||
FILENAME_SETTING(0, quickscreen_bottom, "quickscreen bottom",
|
FILENAME_SETTING(0, quickscreen_bottom, "quickscreen bottom",
|
||||||
"show files", NULL, NULL, MAX_FILENAME+1),
|
"show files", NULL, NULL, MAX_FILENAME+1),
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
const int nb_settings = sizeof(settings)/sizeof(*settings);
|
const int nb_settings = sizeof(settings)/sizeof(*settings);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue