summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorAlexander Levin <al.le@gmx.de>2012-03-02 20:33:13 +0100
committerAlexander Levin <al.le@gmx.de>2012-03-16 22:26:13 +0100
commit7676dae3e0f279d4b193f1c9abf8977c8f52e5d2 (patch)
tree56989be5ea4ddb15618a060dc2b0afbdc996f29a /apps/settings.h
parente07b22f27e4fb23355d96e840252753be8b2ba39 (diff)
downloadrockbox-7676dae3e0f279d4b193f1c9abf8977c8f52e5d2.tar.gz
rockbox-7676dae3e0f279d4b193f1c9abf8977c8f52e5d2.zip
More meaningful name and type for 'root menu' setting
The patch changes 'int root_menu' to 'bool root_menu_customized' which better expresses what the value means. Change-Id: Ic272ac161fc05f5d3298e1e46578977dd590ebaf
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h
index a55ab0c8b6..012e289d0c 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -823,8 +823,8 @@ struct user_settings
823#endif 823#endif
824 824
825 char start_directory[MAX_PATHNAME+1]; 825 char start_directory[MAX_PATHNAME+1];
826 /* status setting for the root menu customisability. 0 = default, 1 = loaded from cfg */ 826 /* Has the root been customized from the .cfg file? false = no, true = loaded from cfg */
827 int root_menu; 827 bool root_menu_customized;
828}; 828};
829 829
830/** global variables **/ 830/** global variables **/