diff options
| author | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-21 06:05:51 +0000 |
|---|---|---|
| committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-07-21 06:05:51 +0000 |
| commit | 68e363b18f8c358269238a21cd1e0e1655575ddc (patch) | |
| tree | df48625d00609205967027478977eb54e20c627e | |
| parent | 84f5e09820da543b6e30cbfd21f1e254204e5e03 (diff) | |
| download | rockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.zip rockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.tar.gz rockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.tar.bz2 rockbox-68e363b18f8c358269238a21cd1e0e1655575ddc.tar.xz | |
rockboy: simplify build condition
it builds for all current plugin buffer sizes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27506 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/SUBDIRS | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugins/SUBDIRS b/apps/plugins/SUBDIRS index c28adfb..33efc5f 100644 --- a/apps/plugins/SUBDIRS +++ b/apps/plugins/SUBDIRS @@ -17,9 +17,7 @@ clock && (LCD_PIXELFORMAT != HORIZONTAL_PACKING) /* TODO */ \ && (LCD_PIXELFORMAT != VERTICAL_INTERLEAVED) /* TODO */ \ && (defined(HAVE_LCD_COLOR) || (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) || \ - (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) \ - && (PLUGIN_BUFFER_SIZE >= 0x60000 /* it needs a lot of RAM */ || \ - PLUGIN_BUFFER_SIZE <= 0x20000) /* but we can use overlays */ + (LCD_HEIGHT == 128) && (LCD_DEPTH == 2)) rockboy #endif |