summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Wilgus <wilgus.william@gmail.com>2022-12-20 02:40:14 -0500
committerWilliam Wilgus <wilgus.william@gmail.com>2022-12-20 02:40:14 -0500
commit18ec1a2aa6f0acc87135569eaa64c11f30648d65 (patch)
treecf138a0494d87f8c7c0ff60fb6774d1bb8e06364
parent83bb89d0b836c2571315362603bc5a51cd3b804a (diff)
downloadrockbox-18ec1a2aa6.tar.gz
rockbox-18ec1a2aa6.zip
[Bug Fix] Credits Plugin don't set the back/foreground on greyscale displays
Change-Id: I2e5a37111dd055932b84962b70ff6c3eace945c7
-rw-r--r--apps/plugins/credits.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/plugins/credits.c b/apps/plugins/credits.c
index 782bc6eb14..86ca0ff4ab 100644
--- a/apps/plugins/credits.c
+++ b/apps/plugins/credits.c
@@ -362,16 +362,11 @@ enum plugin_status plugin_start(const void* parameter)
/* Turn off backlight timeout */
backlight_ignore_timeout();
-#if LCD_DEPTH > 1
+#if LCD_DEPTH >= 16
rb->lcd_set_foreground (LCD_WHITE);
rb->lcd_set_background (LCD_BLACK);
#endif
-#ifdef HAVE_REMOTE_LCD
-#if (LCD_REMOTE_DEPTH > 1)
- rb->lcd_remote_set_foreground (LCD_WHITE);
- rb->lcd_remote_set_background (LCD_BLACK);
-#endif
-#endif
+
show_logo();
/* Show the logo for about 5 secs allowing the user to stop */