diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-03-23 09:21:49 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-23 09:21:49 +0000 |
| commit | 408613ca2220df3e59fb01d2d8cf922042ab682a (patch) | |
| tree | 959edecfc7f6ee1587669832dda6bd37b60c4c2f /apps | |
| parent | 00094511f43beda5cca4f2f29772b3bc4a42d04d (diff) | |
| download | rockbox-408613ca2220df3e59fb01d2d8cf922042ab682a.zip rockbox-408613ca2220df3e59fb01d2d8cf922042ab682a.tar.gz rockbox-408613ca2220df3e59fb01d2d8cf922042ab682a.tar.bz2 rockbox-408613ca2220df3e59fb01d2d8cf922042ab682a.tar.xz | |
Sliding puzzle: Fix graphics size and help text for M3. * Bubbles: Better (larger) emblems for M3.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16759 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 4 | ||||
| -rw-r--r-- | apps/plugins/bitmaps/native/bubbles_emblem.128x96x2.bmp | bin | 280 -> 344 bytes | |||
| -rw-r--r-- | apps/plugins/bitmaps/native/sliding_puzzle.96x96x2.bmp | bin | 0 -> 4728 bytes | |||
| -rw-r--r-- | apps/plugins/sliding_puzzle.c | 4 |
4 files changed, 7 insertions, 1 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 1afc30f..6f069dd 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -591,7 +591,9 @@ matrix_normal.bmp sliding_puzzle.240x240x16.bmp #endif #elif (LCD_DEPTH > 1) -#if SMALLER_DIMENSION <= 110 +#if SMALLER_DIMENSION <= 96 + sliding_puzzle.96x96x2.bmp +#elif SMALLER_DIMENSION <= 110 sliding_puzzle.108x108x2.bmp #elif SMALLER_DIMENSION <= 128 sliding_puzzle.128x128x2.bmp diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.128x96x2.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.128x96x2.bmp Binary files differindex 2b5293b..f1d108f 100644 --- a/apps/plugins/bitmaps/native/bubbles_emblem.128x96x2.bmp +++ b/apps/plugins/bitmaps/native/bubbles_emblem.128x96x2.bmp diff --git a/apps/plugins/bitmaps/native/sliding_puzzle.96x96x2.bmp b/apps/plugins/bitmaps/native/sliding_puzzle.96x96x2.bmp Binary files differnew file mode 100644 index 0000000..d47d4ec --- /dev/null +++ b/apps/plugins/bitmaps/native/sliding_puzzle.96x96x2.bmp diff --git a/apps/plugins/sliding_puzzle.c b/apps/plugins/sliding_puzzle.c index 00dd00e..2c6e249 100644 --- a/apps/plugins/sliding_puzzle.c +++ b/apps/plugins/sliding_puzzle.c @@ -638,6 +638,10 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) rb->lcd_putsxy(0, 18, "[OFF] to stop"); rb->lcd_putsxy(0, 28, "[REW] shuffle"); rb->lcd_putsxy(0, 38, "[PLAY] change pic"); +#elif CONFIG_KEYPAD == IAUDIO_M3_PAD + rb->lcd_putsxy(0, 18, "[REC] to stop"); + rb->lcd_putsxy(0, 28, "[MODE] shuffle"); + rb->lcd_putsxy(0, 38, "[MENU] change pic"); #endif #ifdef HAVE_ALBUMART rb->lcd_putsxy(0,48," pic->albumart->num"); |