summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-02-15 17:50:02 +0000
committerDave Chapman <dave@dchapman.com>2005-02-15 17:50:02 +0000
commit6416099f3fb486f21caea3673a362b63e26dd314 (patch)
tree8fd329961965d2de75c157dedad3e550d0a50a35 /apps
parent00cf0dab45c8ebf289b0c317d5fcbb48454a2a10 (diff)
downloadrockbox-6416099f3fb486f21caea3673a362b63e26dd314.tar.gz
rockbox-6416099f3fb486f21caea3673a362b63e26dd314.zip
Bugfix - check MEM not MEMORYSIZE when defining PLUGIN_BUFFER_SIZE in a C file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5954 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index cf5e8a0b93..93717ccd06 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -62,7 +62,7 @@
62#define PREFIX(_x_) _x_ 62#define PREFIX(_x_) _x_
63#endif 63#endif
64 64
65#if MEMORYSIZE >= 32 65#if MEM >= 32
66#define PLUGIN_BUFFER_SIZE 0xC0000 66#define PLUGIN_BUFFER_SIZE 0xC0000
67#else 67#else
68#define PLUGIN_BUFFER_SIZE 0x8000 68#define PLUGIN_BUFFER_SIZE 0x8000