1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Rafaël Carré 2010-07-21 06:05:51 +00:00
parent 84f5e09820
commit 68e363b18f

View file

@ -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