From d7f94393533a47597e3786b2687877f2b601b3d4 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Thu, 7 Jul 2005 00:05:29 +0000 Subject: Adapted remote LCD driver and player graphics library to the new bitmap function naming scheme. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7047 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/logo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/plugins/logo.c') diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index ad8b8fd025..baaf46f911 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -233,14 +233,14 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { rb->lcd_mono_bitmap(LOGO, x, y, LOGO_WIDTH, LOGO_HEIGHT); #ifdef REMOTE_LOGO rb->lcd_remote_clear_display(); - rb->lcd_remote_bitmap(REMOTE_LOGO, + rb->lcd_remote_mono_bitmap(REMOTE_LOGO, (x * (REMOTE_WIDTH - REMOTE_LOGO_WIDTH)) / (DISPLAY_WIDTH - LOGO_WIDTH), (y * (REMOTE_HEIGHT - REMOTE_LOGO_HEIGHT)) / (DISPLAY_HEIGHT - LOGO_HEIGHT), REMOTE_LOGO_WIDTH, REMOTE_LOGO_HEIGHT); #endif #else pgfx_clear_display(); - pgfx_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT); + pgfx_mono_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT); cpos = x / 5; #endif -- cgit v1.2.3