From 7676dae3e0f279d4b193f1c9abf8977c8f52e5d2 Mon Sep 17 00:00:00 2001 From: Alexander Levin Date: Fri, 2 Mar 2012 20:33:13 +0100 Subject: 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 --- apps/settings.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/settings.h') 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 #endif char start_directory[MAX_PATHNAME+1]; - /* status setting for the root menu customisability. 0 = default, 1 = loaded from cfg */ - int root_menu; + /* Has the root been customized from the .cfg file? false = no, true = loaded from cfg */ + bool root_menu_customized; }; /** global variables **/ -- cgit