1
0
Fork 0
forked from len0rd/rockbox
foxbox/apps/plugins/SUBDIRS
Barry Wardell 41ee9e3304 FS#6539 - Thanks to Tom Ross
Add Jewels, Spacerocks, Wormlet, Rockboy and Sudoku for the e200. Also Includes manual changes for plugins.
Add X5 keymappings for wormlet to the manual.
Add help text for Jewels on the H10 and give a warning if help text is not defined.
Fix bug in spacerocks lives drawing on large screens (larger than Ondio).
Change spacerocks comments to C style.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12018 a1c6a512-1295-4272-9138-f99709370657
2007-01-15 20:40:48 +00:00

44 lines
931 B
Text

#ifndef IRIVER_IFP7XX_SERIES
/* For all targets */
/* For various targets... */
#if (CONFIG_KEYPAD == RECORDER_PAD) || \
(CONFIG_KEYPAD == IRIVER_H100_PAD) || \
(CONFIG_KEYPAD == IRIVER_H300_PAD) || \
defined(IPOD_COLOR) || \
defined(IPOD_VIDEO) || \
defined(TOSHIBA_GIGABEAT_F) || \
defined(SANSA_E200)
rockboy
#endif
/* For all targets with a bitmap display */
#ifdef HAVE_LCD_BITMAP
chessbox
sudoku
#endif
/* For all 2bpp and colour targets */
#if (LCD_DEPTH >= 2)
zxbox
#endif
/* For all the colour targets and iriver H1x0 */
#if defined(HAVE_LCD_COLOR) || defined(IRIVER_H100_SERIES)
pacbox
#endif
/* For all the color targets apart from the Gigabeat */
#if (defined(HAVE_LCD_COLOR) && !defined(TOSHIBA_GIGABEAT_F)) || \
(LCD_DEPTH == 2) && !defined(ARCHOS_AV300)
doom
#endif
/* For all the colour targets */
#if defined(HAVE_LCD_COLOR)
mpegplayer
#endif
#endif /* IRIVER_IFP7XX_SERIES */