diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-06-28 23:15:47 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-06-28 23:15:47 +0000 |
| commit | 7e11acbce9b9a63c28ded055d02301175391e027 (patch) | |
| tree | ea8d30e7281e8d720d6dc8ea51804e1749282697 /apps/plugins/logo.c | |
| parent | c2bf5dfe12978b44d5d890a37f256c8d9f510660 (diff) | |
| download | rockbox-7e11acbce9b9a63c28ded055d02301175391e027.zip rockbox-7e11acbce9b9a63c28ded055d02301175391e027.tar.gz rockbox-7e11acbce9b9a63c28ded055d02301175391e027.tar.bz2 rockbox-7e11acbce9b9a63c28ded055d02301175391e027.tar.xz | |
Second part of graphics api rework. Bitmap drawing and text output converted; some code cleanup and more optimisations.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6906 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/logo.c')
| -rw-r--r-- | apps/plugins/logo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index 7763fb9..7807982 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -229,7 +229,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { while (1) { #ifdef HAVE_LCD_BITMAP rb->lcd_clear_display(); - rb->lcd_bitmap(LOGO, x, y, LOGO_WIDTH, LOGO_HEIGHT, false); + rb->lcd_bitmap(LOGO, x, y, LOGO_WIDTH, LOGO_HEIGHT); #ifdef REMOTE_LOGO rb->remote_clear_display(); rb->remote_bitmap(REMOTE_LOGO, |