summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzymon Dziok <b0hoon@o2.pl>2014-09-08 14:02:34 +0200
committerSzymon Dziok <b0hoon@o2.pl>2014-09-08 14:09:58 +0200
commit5e0baf29222f9a8b1bc6c993c82e523036fdcc05 (patch)
treed9f09b1fb1f336e4b77db4d526374c6881903434
parente312101181c2b4a4bd610e4f4e8a1f9a9f576323 (diff)
downloadrockbox-5e0baf29222f9a8b1bc6c993c82e523036fdcc05.tar.gz
rockbox-5e0baf29222f9a8b1bc6c993c82e523036fdcc05.zip
Bubbles: make it work on Samsung YH-820 and align it on the occasion on Cowon M3.
Change-Id: I8d679ccba7f618cee78445b76452c368b00d2b60
-rw-r--r--apps/plugins/bitmaps/native/SOURCES9
-rw-r--r--apps/plugins/bitmaps/native/bubbles_emblem.128x96x16.bmpbin0 -> 1398 bytes
-rw-r--r--apps/plugins/bubbles.c4
3 files changed, 8 insertions, 5 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES
index d608062335..2cd45917d9 100644
--- a/apps/plugins/bitmaps/native/SOURCES
+++ b/apps/plugins/bitmaps/native/SOURCES
@@ -175,15 +175,18 @@ bubbles_background.176x132x16.bmp
175#elif (LCD_WIDTH >= 160) && (LCD_HEIGHT >= 128) 175#elif (LCD_WIDTH >= 160) && (LCD_HEIGHT >= 128)
176bubbles_emblem.160x128x16.bmp 176bubbles_emblem.160x128x16.bmp
177bubbles_background.160x128x16.bmp 177bubbles_background.160x128x16.bmp
178#elif (LCD_WIDTH >= 132) && (LCD_HEIGHT >= 80)
179bubbles_emblem.132x80x16.bmp
180bubbles_background.132x80x16.bmp
178#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 160) 181#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 160)
179bubbles_emblem.160x128x16.bmp 182bubbles_emblem.160x128x16.bmp
180bubbles_background.128x160x16.bmp 183bubbles_background.128x160x16.bmp
181#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) 184#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128)
182bubbles_emblem.160x128x16.bmp 185bubbles_emblem.160x128x16.bmp
183bubbles_background.128x128x16.bmp 186bubbles_background.128x128x16.bmp
184#elif (LCD_WIDTH >= 132) && (LCD_HEIGHT >= 80) 187#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 96)
185bubbles_emblem.132x80x16.bmp 188bubbles_emblem.128x96x16.bmp
186bubbles_background.132x80x16.bmp 189bubbles_background.128x96x16.bmp
187#elif (LCD_WIDTH >= 96) && (LCD_HEIGHT >= 96) 190#elif (LCD_WIDTH >= 96) && (LCD_HEIGHT >= 96)
188bubbles_emblem.132x80x16.bmp 191bubbles_emblem.132x80x16.bmp
189bubbles_background.96x96x16.bmp 192bubbles_background.96x96x16.bmp
diff --git a/apps/plugins/bitmaps/native/bubbles_emblem.128x96x16.bmp b/apps/plugins/bitmaps/native/bubbles_emblem.128x96x16.bmp
new file mode 100644
index 0000000000..4a451d80b3
--- /dev/null
+++ b/apps/plugins/bitmaps/native/bubbles_emblem.128x96x16.bmp
Binary files differ
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index 539380859e..3254229cd0 100644
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -187,9 +187,9 @@ enum {
187#define XOFS 33 187#define XOFS 33
188#define MAX_FPS 30 188#define MAX_FPS 30
189 189
190/* 9x9 bubbles (iAudio M3) */ 190/* 9x9 bubbles (iAudio M3, Samsung YH-820) */
191#elif (LCD_HEIGHT == 96) && (LCD_WIDTH == 128) 191#elif (LCD_HEIGHT == 96) && (LCD_WIDTH == 128)
192#define XOFS 45 192#define XOFS 29
193#define MAX_FPS 30 193#define MAX_FPS 30
194 194
195/* 8x8 bubbles (Sansa C200) */ 195/* 8x8 bubbles (Sansa C200) */