From 6416099f3fb486f21caea3673a362b63e26dd314 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Tue, 15 Feb 2005 17:50:02 +0000 Subject: [PATCH] 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 --- apps/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ #define PREFIX(_x_) _x_ #endif -#if MEMORYSIZE >= 32 +#if MEM >= 32 #define PLUGIN_BUFFER_SIZE 0xC0000 #else #define PLUGIN_BUFFER_SIZE 0x8000