summaryrefslogtreecommitdiff
path: root/apps/talk.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/talk.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/talk.c')
-rw-r--r--apps/talk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/talk.c b/apps/talk.c
index 7dbfb2ef77..ad34437b0f 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -112,7 +112,7 @@ struct queue_entry /* one entry of the internal queue */
112/* The MMC storage on the Ondios is slow enough that we want to buffer the 112/* The MMC storage on the Ondios is slow enough that we want to buffer the
113 * talk clips only when they are needed */ 113 * talk clips only when they are needed */
114# define TALK_PROGRESSIVE_LOAD 114# define TALK_PROGRESSIVE_LOAD
115#elif CONFIG_CODEC == SWCODEC && MEM <= 2 115#elif CONFIG_CODEC == SWCODEC && MEMORYSIZE <= 2
116/* The entire voice file wouldn't fit in memory together with codecs, so we 116/* The entire voice file wouldn't fit in memory together with codecs, so we
117 * load clips each time they are accessed */ 117 * load clips each time they are accessed */
118# define TALK_PARTIAL_LOAD 118# define TALK_PARTIAL_LOAD