summaryrefslogtreecommitdiff
path: root/apps/settings_list.c
diff options
context:
space:
mode:
authorAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-02 17:43:32 +0000
committerAndree Buschmann <AndreeBuschmann@t-online.de>2011-02-02 17:43:32 +0000
commit5d849a963e562d1996c20cd72228835276288141 (patch)
tree8c96a2524f6c1b6d714506a8d012a9c7ded24918 /apps/settings_list.c
parent35bcdef1441519bb66a77b675013309ef39e9eec (diff)
downloadrockbox-5d849a963e562d1996c20cd72228835276288141.tar.gz
rockbox-5d849a963e562d1996c20cd72228835276288141.zip
Clean up multiple definitions of RAM size. Remove -DMEM (make) and MEM (code), use the already defined MEMORYSIZE instead.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29189 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_list.c')
-rw-r--r--apps/settings_list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index c6f5e677eb..94910c0818 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -760,7 +760,7 @@ const struct settings_list settings[] = {
760 SYSTEM_SETTING(NVRAM(4), topruntime, 0), 760 SYSTEM_SETTING(NVRAM(4), topruntime, 0),
761 INT_SETTING(F_BANFROMQS, max_files_in_playlist, 761 INT_SETTING(F_BANFROMQS, max_files_in_playlist,
762 LANG_MAX_FILES_IN_PLAYLIST, 762 LANG_MAX_FILES_IN_PLAYLIST,
763#if MEM > 1 763#if MEMORYSIZE > 1
764 10000, 764 10000,
765#else 765#else
766 400, 766 400,
@@ -768,7 +768,7 @@ const struct settings_list settings[] = {
768 "max files in playlist", UNIT_INT, 1000, 32000, 1000, 768 "max files in playlist", UNIT_INT, 1000, 32000, 1000,
769 NULL, NULL, NULL), 769 NULL, NULL, NULL),
770 INT_SETTING(F_BANFROMQS, max_files_in_dir, LANG_MAX_FILES_IN_DIR, 770 INT_SETTING(F_BANFROMQS, max_files_in_dir, LANG_MAX_FILES_IN_DIR,
771#if MEM > 1 771#if MEMORYSIZE > 1
772 1000, 772 1000,
773#else 773#else
774 200, 774 200,