summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2007-06-30 22:41:20 +0000
committerAntoine Cellerier <dionoea@videolan.org>2007-06-30 22:41:20 +0000
commitbccdc00e4394191d1cd52c956881c1450a6770c4 (patch)
treeb95fd4ec177a48e00cec654774f02e75d3008825
parent899feca09308832c7fdae30c23cd0fc1423abd76 (diff)
downloadrockbox-bccdc00e4394191d1cd52c956881c1450a6770c4.tar.gz
rockbox-bccdc00e4394191d1cd52c956881c1450a6770c4.zip
Starfield background should be black (this code from r11605 didn't make it past r13075).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13749 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/starfield.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c
index d96eb5c43f..d0d2d32066 100644
--- a/apps/plugins/starfield.c
+++ b/apps/plugins/starfield.c
@@ -253,6 +253,9 @@ int plugin_main(void)
253 starfield_init(&starfield); 253 starfield_init(&starfield);
254 starfield_add_stars(&starfield, INIT_STARS); 254 starfield_add_stars(&starfield, INIT_STARS);
255 255
256#if LCD_DEPTH > 1
257 rb->lcd_set_backdrop(NULL);
258#endif
256#ifdef HAVE_LCD_COLOR 259#ifdef HAVE_LCD_COLOR
257 rb->lcd_set_background(LCD_BLACK); 260 rb->lcd_set_background(LCD_BLACK);
258 rb->lcd_set_foreground(LCD_WHITE); 261 rb->lcd_set_foreground(LCD_WHITE);