summaryrefslogtreecommitdiff
path: root/apps/plugins/logo.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/logo.c')
-rw-r--r--apps/plugins/logo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index f08ca3a62a..79ff6acb62 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -176,12 +176,12 @@ const unsigned char rockbox16x7[] = {
176#endif 176#endif
177#endif 177#endif
178 178
179enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { 179enum plugin_status plugin_start(const struct plugin_api* api, const void* parameter) {
180 int button; 180 int button;
181 int timer = 10; 181 int timer = 10;
182 int x = (DISPLAY_WIDTH / 2) - (LOGO_WIDTH / 2); 182 int x = (DISPLAY_WIDTH / 2) - (LOGO_WIDTH / 2);
183 int y = (DISPLAY_HEIGHT / 2) - (LOGO_HEIGHT / 2); 183 int y = (DISPLAY_HEIGHT / 2) - (LOGO_HEIGHT / 2);
184 struct plugin_api* rb = api; 184 const struct plugin_api* rb = api;
185 int dx; 185 int dx;
186 int dy; 186 int dy;
187#ifdef HAVE_LCD_CHARCELLS 187#ifdef HAVE_LCD_CHARCELLS