diff options
| author | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2008-01-26 00:16:06 +0000 |
|---|---|---|
| committer | Nicolas Pennequin <nicolas.pennequin@free.fr> | 2008-01-26 00:16:06 +0000 |
| commit | 02f1839bfe4766ac72631bd7b76f2fc7f291b89e (patch) | |
| tree | 533f71fe6ded348dc9c5add13dae25dde9a30c57 /apps/plugins/bitmaps/native/SOURCES | |
| parent | 59914786289033648db9bd5f4222978767e4d665 (diff) | |
| download | rockbox-02f1839bfe4766ac72631bd7b76f2fc7f291b89e.zip rockbox-02f1839bfe4766ac72631bd7b76f2fc7f291b89e.tar.gz rockbox-02f1839bfe4766ac72631bd7b76f2fc7f291b89e.tar.bz2 rockbox-02f1839bfe4766ac72631bd7b76f2fc7f291b89e.tar.xz | |
Accept FS#7218 by Dave Hooper: Bitmap version of the sliding puzzle game.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16168 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps/native/SOURCES')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 61c9b7a..73ee211 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -546,4 +546,25 @@ matrix_normal.bmp #endif #endif +#if defined(HAVE_LCD_COLOR) +#if (LCD_WIDTH==132 && LCD_HEIGHT==80) + sliding_puzzle.80x80x16.bmp +#elif (LCD_WIDTH==128 || LCD_HEIGHT==128) + sliding_puzzle.128x128x16.bmp +#elif (LCD_WIDTH==176 || LCD_WIDTH==176) + sliding_puzzle.176x176x16.bmp +#elif (LCD_WIDTH==240 || LCD_HEIGHT==240) + sliding_puzzle.240x240x16.bmp +#endif +#elif (LCD_DEPTH>1) +#if (LCD_WIDTH==110 || LCD_HEIGHT==110) + sliding_puzzle.110x110x2.bmp +#elif (LCD_WIDTH==128 || LCD_HEIGHT==128) + sliding_puzzle.128x128x2.bmp +#endif +#elif (LCD_WIDTH>=80 && LCD_HEIGHT==64) + sliding_puzzle.80x64x1.bmp +#endif + + #endif /* HAVE_LCD_BITMAP */ |