diff options
| author | Adam Boot <rotator@gmail.com> | 2006-02-15 22:32:57 +0000 |
|---|---|---|
| committer | Adam Boot <rotator@gmail.com> | 2006-02-15 22:32:57 +0000 |
| commit | e824805f4217a4a6b702a5845c6e25422984e9b5 (patch) | |
| tree | ce244a913e4b305ed70a147370a3a0e32916f82b /apps/plugins/bitmaps/native | |
| parent | d935679ba69c0349623b39cc3251563c805753ca (diff) | |
| download | rockbox-e824805f4217a4a6b702a5845c6e25422984e9b5.zip rockbox-e824805f4217a4a6b702a5845c6e25422984e9b5.tar.gz rockbox-e824805f4217a4a6b702a5845c6e25422984e9b5.tar.bz2 rockbox-e824805f4217a4a6b702a5845c6e25422984e9b5.tar.xz | |
Bejeweled: speed fixes, graphics enhancements, and use external bitmaps
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8697 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps/native')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 17 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/native/jewels.112x64x1.bmp | bin | 0 -> 318 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/jewels.160x128x1.bmp | bin | 0 -> 574 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/jewels.160x128x16.bmp | bin | 0 -> 6200 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/jewels.220x176x16.bmp | bin | 0 -> 12024 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/jewels.320x240x16.bmp | bin | 0 -> 22136 bytes |
6 files changed, 17 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 163482a..5e35666 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -1,5 +1,22 @@ #ifdef HAVE_LCD_BITMAP +/* Bejeweled */ +#if (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) +bejeweled_jewels.112x64x1.bmp +#elif (LCD_WIDTH == 128) && (LCD_HEIGHT == 64) +bejeweled_jewels.112x64x1.bmp +#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && !defined(HAVE_LCD_COLOR) +bejeweled_jewels.160x128x1.bmp +#elif (LCD_WIDTH == 160) && (LCD_HEIGHT == 128) && defined(HAVE_LCD_COLOR) +bejeweled_jewels.160x128x16.bmp +#elif (LCD_WIDTH == 176) && (LCD_HEIGHT == 132) +bejeweled_jewels.160x128x16.bmp +#elif (LCD_WIDTH == 220) && (LCD_HEIGHT == 176) +bejeweled_jewels.220x176x16.bmp +#elif (LCD_WIDTH == 320) && (LCD_HEIGHT == 240) +bejeweled_jewels.320x240x16.bmp +#endif + /* Solitaire */ #ifdef HAVE_LCD_COLOR solitaire_cardback.220x176x16.bmp diff --git a/apps/plugins/bitmaps/native/jewels.112x64x1.bmp b/apps/plugins/bitmaps/native/jewels.112x64x1.bmp Binary files differnew file mode 100644 index 0000000..447df6d --- /dev/null +++ b/apps/plugins/bitmaps/native/jewels.112x64x1.bmp diff --git a/apps/plugins/bitmaps/native/jewels.160x128x1.bmp b/apps/plugins/bitmaps/native/jewels.160x128x1.bmp Binary files differnew file mode 100644 index 0000000..0417362 --- /dev/null +++ b/apps/plugins/bitmaps/native/jewels.160x128x1.bmp diff --git a/apps/plugins/bitmaps/native/jewels.160x128x16.bmp b/apps/plugins/bitmaps/native/jewels.160x128x16.bmp Binary files differnew file mode 100644 index 0000000..5d9606d --- /dev/null +++ b/apps/plugins/bitmaps/native/jewels.160x128x16.bmp diff --git a/apps/plugins/bitmaps/native/jewels.220x176x16.bmp b/apps/plugins/bitmaps/native/jewels.220x176x16.bmp Binary files differnew file mode 100644 index 0000000..36d4f51 --- /dev/null +++ b/apps/plugins/bitmaps/native/jewels.220x176x16.bmp diff --git a/apps/plugins/bitmaps/native/jewels.320x240x16.bmp b/apps/plugins/bitmaps/native/jewels.320x240x16.bmp Binary files differnew file mode 100644 index 0000000..201c178 --- /dev/null +++ b/apps/plugins/bitmaps/native/jewels.320x240x16.bmp |