summaryrefslogtreecommitdiff
path: root/apps/plugins/bubbles.c
diff options
context:
space:
mode:
authorRobert Menes <rmenes@rockbox.org>2009-12-07 18:23:25 +0000
committerRobert Menes <rmenes@rockbox.org>2009-12-07 18:23:25 +0000
commited64d91bc226f0cf4c9b7da1759d1fc8d5af5c3d (patch)
tree452b580d0ab269bb7728f72984ec7c0ab6aa0df3 /apps/plugins/bubbles.c
parent2d722a17ec1d7b99c4e23d97784f77abbfb128e3 (diff)
downloadrockbox-ed64d91bc226f0cf4c9b7da1759d1fc8d5af5c3d.tar.gz
rockbox-ed64d91bc226f0cf4c9b7da1759d1fc8d5af5c3d.zip
Yet more GoGear SA9200 plugin keymaps. Almost done!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23893 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bubbles.c')
-rw-r--r--apps/plugins/bubbles.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index ba28808e65..3197a45eb8 100644
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -137,7 +137,7 @@ enum {
137#define XOFS 64 137#define XOFS 64
138#define MAX_FPS 30 138#define MAX_FPS 30
139 139
140/* 16x16 bubbles (H300, iPod Color) */ 140/* 16x16 bubbles (H300, iPod Color, HDD6330) */
141#elif (LCD_HEIGHT == 176) && (LCD_WIDTH == 220) 141#elif (LCD_HEIGHT == 176) && (LCD_WIDTH == 220)
142#define XOFS 46 142#define XOFS 46
143#define MAX_FPS 30 143#define MAX_FPS 30
@@ -164,11 +164,18 @@ enum {
164#define XOFS 40 164#define XOFS 40
165#define MAX_FPS 40 165#define MAX_FPS 40
166 166
167/* 12x12 bubbles (H100, H10, iAudio X5, iPod 3G, iPod 4G grayscale) */ 167/* 12x12 bubbles (H100, H10, iAudio X5, HDD1630, iPod 3G, iPod 4G grayscale) */
168#elif (LCD_HEIGHT == 128) && ((LCD_WIDTH == 160) || (LCD_WIDTH == 128)) 168#elif (LCD_HEIGHT == 128) && ((LCD_WIDTH == 160) || (LCD_WIDTH == 128))
169#define XOFS 33 169#define XOFS 33
170#define MAX_FPS 30 170#define MAX_FPS 30
171 171
172/* 12x12 bubbles (GoGear SA9200) */
173#elif (LCD_HEIGHT == 160) && (LCD_WIDTH == 128)
174#define XOFS 33
175#define ROW_HEIGHT 10
176#define ROW_INDENT 6
177#define MAX_FPS 30
178
172/* 10x10 bubbles (iPod Mini) */ 179/* 10x10 bubbles (iPod Mini) */
173#elif (LCD_HEIGHT == 110) && (LCD_WIDTH == 138) 180#elif (LCD_HEIGHT == 110) && (LCD_WIDTH == 138)
174#define XOFS 33 181#define XOFS 33