summaryrefslogtreecommitdiff
path: root/apps/plugins/credits.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2023-01-01 07:48:42 +0100
committerChristian Soffke <christian.soffke@gmail.com>2023-01-05 23:45:41 -0500
commit9bd524944598e3259e01269c9516de776063f645 (patch)
tree3d1e692e2b4df1c5c67ebffb57605eff6f651dd0 /apps/plugins/credits.c
parent9367ef1ed6b78d6bc078620009e383b3deae60b2 (diff)
downloadrockbox-9bd524944598e3259e01269c9516de776063f645.tar.gz
rockbox-9bd524944598e3259e01269c9516de776063f645.zip
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
Diffstat (limited to 'apps/plugins/credits.c')
-rw-r--r--apps/plugins/credits.c16
1 files changed, 8 insertions, 8 deletions
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 @@
24#ifdef HAVE_REMOTE_LCD 24#ifdef HAVE_REMOTE_LCD
25#define REMOTE_WIDTH LCD_REMOTE_WIDTH 25#define REMOTE_WIDTH LCD_REMOTE_WIDTH
26#define REMOTE_HEIGHT LCD_REMOTE_HEIGHT 26#define REMOTE_HEIGHT LCD_REMOTE_HEIGHT
27#include "pluginbitmaps/remote_rockboxlogo.h" 27#include "pluginbitmaps/remote_creditslogo.h"
28#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_rockboxlogo 28#define REMOTE_LOGO_WIDTH BMPWIDTH_remote_creditslogo
29#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_rockboxlogo 29#define REMOTE_LOGO_HEIGHT BMPHEIGHT_remote_creditslogo
30#define REMOTE_LOGO (const fb_remote_data*)remote_rockboxlogo 30#define REMOTE_LOGO (const fb_remote_data*)remote_creditslogo
31#endif /* HAVE_REMOTE_LCD */ 31#endif /* HAVE_REMOTE_LCD */
32 32
33#define LOGO (const fb_data*)rockboxlogo 33#define LOGO (const fb_data*)creditslogo
34#include "pluginbitmaps/rockboxlogo.h" 34#include "pluginbitmaps/creditslogo.h"
35#define LOGO_WIDTH BMPWIDTH_rockboxlogo 35#define LOGO_WIDTH BMPWIDTH_creditslogo
36#define LOGO_HEIGHT BMPHEIGHT_rockboxlogo 36#define LOGO_HEIGHT BMPHEIGHT_creditslogo
37 37
38static const char* const credits[] = { 38static const char* const credits[] = {
39#include "credits.raw" /* generated list of names from docs/CREDITS */ 39#include "credits.raw" /* generated list of names from docs/CREDITS */