From 9bd524944598e3259e01269c9516de776063f645 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Sun, 1 Jan 2023 07:48:42 +0100 Subject: plugins: Credits: Fix logo sizes Commit 1930ca8 repurposed the 'Logo' plugin's logos, whose dimensions are different from those used by show_logo, which was previously called to display the logo. Change-Id: I4d0c5f597dadfdadae244d895518bbcfefebb581 --- apps/plugins/credits.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'apps/plugins/credits.c') diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c index 86ca0ff4ab..f4716651fd 100644 --- a/apps/plugins/credits.c +++ b/apps/plugins/credits.c @@ -24,16 +24,16 @@ #ifdef HAVE_REMOTE_LCD #define REMOTE_WIDTH LCD_REMOTE_WIDTH #define REMOTE_HEIGHT LCD_REMOTE_HEIGHT -#include "pluginbitmaps/remote_rockboxlogo.h" -#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_rockboxlogo -#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_rockboxlogo -#define REMOTE_LOGO (const fb_remote_data*)remote_rockboxlogo +#include "pluginbitmaps/remote_creditslogo.h" +#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_creditslogo +#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_creditslogo +#define REMOTE_LOGO (const fb_remote_data*)remote_creditslogo #endif /* HAVE_REMOTE_LCD */ -#define LOGO (const fb_data*)rockboxlogo -#include "pluginbitmaps/rockboxlogo.h" -#define LOGO_WIDTH BMPWIDTH_rockboxlogo -#define LOGO_HEIGHT BMPHEIGHT_rockboxlogo +#define LOGO (const fb_data*)creditslogo +#include "pluginbitmaps/creditslogo.h" +#define LOGO_WIDTH BMPWIDTH_creditslogo +#define LOGO_HEIGHT BMPHEIGHT_creditslogo static const char* const credits[] = { #include "credits.raw" /* generated list of names from docs/CREDITS */ -- cgit v1.2.3