summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2020-07-16 23:23:25 -0400
committerSolomon Peachy <pizza@shaftnet.org>2020-07-16 23:23:25 -0400
commit2b9c85a41b190c6843000f18b922946bd6bd3bed (patch)
treebc3ea7a222fbe2bbfe6da37586631b504dd70a50 /apps/settings_list.c
parent805f5316325eea37a90b5299b4a3ba601077f0a5 (diff)
downloadrockbox-2b9c85a41b190c6843000f18b922946bd6bd3bed.tar.gz
rockbox-2b9c85a41b190c6843000f18b922946bd6bd3bed.zip
storage: Clean up storage_xxxx macros when STORAGE_MULTI is not set
Change-Id: I1652eac1743f4b8b84da08ea5a6d04ac7e17e21d
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index bc03672aeb..435a09bb8a 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -1255,7 +1255,7 @@ const struct settings_list settings[] = {
1255 /* disk */ 1255 /* disk */
1256#ifdef HAVE_DISK_STORAGE 1256#ifdef HAVE_DISK_STORAGE
1257 INT_SETTING(F_TIME_SETTING, disk_spindown, LANG_SPINDOWN, 5, "disk spindown", 1257 INT_SETTING(F_TIME_SETTING, disk_spindown, LANG_SPINDOWN, 5, "disk spindown",
1258 UNIT_SEC, 3, 254, 1, NULL, NULL, storage_spindown), 1258 UNIT_SEC, 3, 254, 1, NULL, NULL, STORAGE_FUNCTION(spindown)),
1259#endif /* HAVE_DISK_STORAGE */ 1259#endif /* HAVE_DISK_STORAGE */
1260 /* browser */ 1260 /* browser */
1261 TEXT_SETTING(0, start_directory, "start directory", "/", NULL, NULL), 1261 TEXT_SETTING(0, start_directory, "start directory", "/", NULL, NULL),