forked from len0rd/rockbox
Fix red...
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17231 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8efd5d3fdf
commit
6482c7396c
1 changed files with 3 additions and 3 deletions
|
@ -115,9 +115,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
#ifdef HAVE_LCD_INVERT
|
#ifdef HAVE_LCD_INVERT
|
||||||
#ifdef OLYMPUS_MROBE_100
|
#ifdef OLYMPUS_MROBE_100
|
||||||
/* mrobe-100 has inverted display so invert it for max brightness */
|
/* mrobe-100 has inverted display so invert it for max brightness */
|
||||||
lcd_set_invert_display(true);
|
rb->lcd_set_invert_display(true);
|
||||||
#else
|
#else
|
||||||
lcd_set_invert_display(false);
|
rb->lcd_set_invert_display(false);
|
||||||
#endif /* OLYMPUS_MROBE_100 */
|
#endif /* OLYMPUS_MROBE_100 */
|
||||||
#endif /* HAVE_LCD_INVERT */
|
#endif /* HAVE_LCD_INVERT */
|
||||||
|
|
||||||
|
@ -185,7 +185,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
||||||
backlight_use_settings(rb);
|
backlight_use_settings(rb);
|
||||||
|
|
||||||
#ifdef HAVE_LCD_INVERT
|
#ifdef HAVE_LCD_INVERT
|
||||||
lcd_set_invert_display(rb->global_settings->invert);
|
rb->lcd_set_invert_display(rb->global_settings->invert);
|
||||||
#endif /* HAVE_LCD_INVERT */
|
#endif /* HAVE_LCD_INVERT */
|
||||||
|
|
||||||
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue