diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2006-08-13 20:44:53 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2006-08-13 20:44:53 +0000 |
| commit | e2a73dc3895d2f2457cf6397def93773f15050d9 (patch) | |
| tree | f45be604d6e2777bb623fa28f95edb863488ffeb /apps/plugins/bitmaps | |
| parent | c9bb152a33fc293955b4b60170deb40c34857072 (diff) | |
| download | rockbox-e2a73dc3895d2f2457cf6397def93773f15050d9.zip rockbox-e2a73dc3895d2f2457cf6397def93773f15050d9.tar.gz rockbox-e2a73dc3895d2f2457cf6397def93773f15050d9.tar.bz2 rockbox-e2a73dc3895d2f2457cf6397def93773f15050d9.tar.xz | |
*: Enhance minesweeper graphics
minesweeper.c: clean source code (ipod keys still need to be changed)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10562 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 12 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/native/minesweeper_tiles.12x12x2.bmp | bin | 0 -> 2950 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/minesweeper_tiles.12x12x24.bmp | bin | 0 -> 5670 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/minesweeper_tiles.16x16x24.bmp | bin | 0 -> 10038 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/minesweeper_tiles.8x8x1.bmp | bin | 0 -> 2550 bytes |
5 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 98c3eef..10e61fb 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -280,4 +280,16 @@ rockpaint.bmp rockpaint_hsvrgb.bmp #endif +#if defined( HAVE_LCD_COLOR ) +#if ( LCD_HEIGHT * LCD_WIDTH ) / ( 16 * 16 ) >= 130 +minesweeper_tiles.16x16x24.bmp +#else +minesweeper_tiles.12x12x24.bmp +#endif +#elif LCD_DEPTH > 1 +minesweeper_tiles.12x12x2.bmp +#else +minesweeper_tiles.8x8x1.bmp +#endif + #endif /* HAVE_LCD_BITMAP */ diff --git a/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x2.bmp b/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x2.bmp Binary files differnew file mode 100644 index 0000000..fddd366 --- /dev/null +++ b/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x2.bmp diff --git a/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x24.bmp b/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x24.bmp Binary files differnew file mode 100644 index 0000000..2834076 --- /dev/null +++ b/apps/plugins/bitmaps/native/minesweeper_tiles.12x12x24.bmp diff --git a/apps/plugins/bitmaps/native/minesweeper_tiles.16x16x24.bmp b/apps/plugins/bitmaps/native/minesweeper_tiles.16x16x24.bmp Binary files differnew file mode 100644 index 0000000..4e1191f --- /dev/null +++ b/apps/plugins/bitmaps/native/minesweeper_tiles.16x16x24.bmp diff --git a/apps/plugins/bitmaps/native/minesweeper_tiles.8x8x1.bmp b/apps/plugins/bitmaps/native/minesweeper_tiles.8x8x1.bmp Binary files differnew file mode 100644 index 0000000..610fbac --- /dev/null +++ b/apps/plugins/bitmaps/native/minesweeper_tiles.8x8x1.bmp |