summaryrefslogtreecommitdiff
path: root/apps/plugins/cube.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
commit4d6374c9236b93e0bd457f99944164fc493d1120 (patch)
treeff9630fcef66e63c61cc0a74e97f21220e668f75 /apps/plugins/cube.c
parent2c643b9f3e22ee07f7949a5471f726758dc40841 (diff)
Get rid of the 'center' parameter for splashes. There were only 2 of almost 500 splashes which were not centered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12807 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/cube.c')
-rw-r--r--apps/plugins/cube.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/cube.c b/apps/plugins/cube.c
index 57f1015368..526400db61 100644
--- a/apps/plugins/cube.c
+++ b/apps/plugins/cube.c
@@ -580,7 +580,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
if (gray_init(rb, gbuf, gbuf_size, true, LCD_WIDTH, LCD_HEIGHT, 3, 0, NULL)
!= 3)
{
- rb->splash(HZ, true, "Couldn't get grayscale buffer");
+ rb->splash(HZ, "Couldn't get grayscale buffer");
return PLUGIN_ERROR;
}
/* init lcd_ function pointers */
@@ -595,7 +595,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
#else /* LCD_CHARCELLS */
if (!pgfx_init(rb, 4, 2))
{
- rb->splash(HZ*2, true, "Old LCD :(");
+ rb->splash(HZ*2, "Old LCD :(");
return PLUGIN_OK;
}
pgfx_display(3, 0);